当前位置: 首页 > news >正文

用ps做一份网站百度一下你知道

用ps做一份网站,百度一下你知道,做图专业软件下载网站有哪些,做英文网站 赚钱目录 一、安装环境 1.无网络使用该命令 2.修改主机名 3.配置hosts解析 4.配置本机免密 5.关闭防火墙和SElinux策略 6.关闭NewworkManager 7.修改yum源 7.1下载阿里源 7.2清空并加载缓存yum源 8.安装基本工具 9.系统升级 10.安装OPenStack的yum仓库 11.修改OPenSt…

目录

一、安装环境

1.无网络使用该命令

2.修改主机名

3.配置hosts解析

4.配置本机免密

5.关闭防火墙和SElinux策略

6.关闭NewworkManager

7.修改yum源

7.1下载阿里源

7.2清空并加载缓存yum源

8.安装基本工具

9.系统升级

10.安装OPenStack的yum仓库

11.修改OPenStack仓库Repo文件

12.安装PackStack工具

13.安装OpenStack-allinone

二、安装完成后步骤

三、基本操作命令

1.数据库

2.HAproxy

3.Pacemker

4.Chrony

5.Ceph

6.http、Keystone

7.Rabbitmq

8.Memcache

9.OpenStack查看命令

10.Glance

11.Nova-Controller

12.Nova-Computer

13.Neutron-Controller

14.Neutron-Computer

15.Dashboard


Openstack是一个云平台管理的项目,它不是一个软件。这个项目由几个主要的组件组合起来完成一些具体的工作。Openstack是一个旨在为公共及私有云的建设与管理提供软件的开源项目。

一、安装环境

1.无网络使用该命令

nmcli c reload; sleep 3; nmcli c up ens33

2.修改主机名

hostnamectl set-hostname openstack.alione.loca

3.配置hosts解析

vim /etc/hosts192.168.241.11 openstack openstack.alione.local

4.配置本机免密

生成密钥ssh-keygen对本机进行免密ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.241.11

5.关闭防火墙和SElinux策略

sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config; setenforce 0; systemctl stop firewalld; systemctl disable firewalld

6.关闭NewworkManager

Centos7中有两种网络模式,避免冲突,在安装完OpenStack后开启

systemctl stop NetworkManager; systemctl disable NetworkManager

7.修改yum源

7.1下载阿里源

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

7.2清空并加载缓存yum源

yum clean all; yum makecache

8.安装基本工具

yum install -y bash-completion vim telnet bridge-utils yum-utilsbash

9.系统升级

yum -y updatereboot

10.安装OPenStack的yum仓库

yum install centos-release-openstack-train -y

11.修改OPenStack仓库Repo文件

cd /etc/yum.repos.dcp CentOS-OpenStack-train.repo{,.bak}vim CentOS-OpenStack-train.repobaseurl=http://mirrors.aliyun.com/$contentdir/$releasever/cloud/$basearch/openstack-train/#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=cloud-openstack-trainyum clean all; yum makecache

12.安装PackStack工具

yum install -y openstack-packstack

13.安装OpenStack-allinone

packstack --allinone

二、安装完成后步骤

如下图:安装完成后会显示web登陆地址,http://192.168.241.11/dashboard

账号密码在:keystonerc_admin这个文件夹中

三、基本操作命令

source keystonerc_adminglance image-listneutron agent-listnova service-listcinder service-list

1.数据库

# systemctl start mysqld# systemctl enable mysqld# systemctl status mysqld#mysql> show status like 'wsrep_%'; # 查看集群状态

2.HAproxy

# systemctl start haproxy.service# systemctl stop haproxy.service# systemctl restart haproxy.service# systemctl enable haproxy.service

3.Pacemker

# systemctl start pcsd.service# systemctl enable pcsd.service# systemctl status pcsd.service# pcs status# pcs cluster standby node# pcs cluster unstandby node# pcs resource restart haproxy #重启haproxy 资源# pcs resource cleanup #清除错误日志后重启所有资源

4.Chrony

# systemctl restart chronyd.service# chronyc sources #同步时间

5.Ceph

# ceph -s# ceph health detail# ceph osd pool create pool_name gp_num pgp_num #创建池

6.http、Keystone

# systemctl start httpd# systemctl enable httpd# systemctl status httpd

7.Rabbitmq

# systemctl enable rabbitmq-server.service# systemctl start rabbitmq-server.service# systemctl status rabbitmq-server.service -l# rabbitmqctl cluster_status# http://rabbitmq-server-IP:15672 #web访问

8.Memcache

# systemctl enable memcached.service# systemctl start memcached.service

9.OpenStack查看命令

# openstack catalog list# openstack endpoint list# openstack service list# openstack domain list# openstack image list# openstack host list

10.Glance

# systemctl enable openstack-glance-api.service openstack-glance-registry.service# systemctl start openstack-glance-api.service openstack-glance-registry.service# openstack image delete image-ID #删除镜像

11.Nova-Controller

# systemctl enable openstack-nova-api.service openstack-nova-consoleauth.service openstack-nova-scheduler.service openstack-nova-conductor.service openstack-nova-novncproxy.service# systemctl start openstack-nova-api.service openstack-nova-consoleauth.service openstack-nova-scheduler.service openstack-nova-conductor.service openstack-nova-novncproxy.service# systemctl status openstack-nova-api.service openstack-nova-consoleauth.service openstack-nova-scheduler.service openstack-nova-conductor.service openstack-nova-novncproxy.service

12.Nova-Computer

# systemctl enable libvirtd.service openstack-nova-compute.service# systemctl start libvirtd.service openstack-nova-compute.service

13.Neutron-Controller

# systemctl enable neutron-server.service neutron-linuxbridge-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service# systemctl start neutron-server.service neutron-linuxbridge-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service# systemctl status neutron-server.service neutron-linuxbridge-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service

14.Neutron-Computer

# systemctl enable neutron-linuxbridge-agent.service# systemctl start neutron-linuxbridge-agent.service

15.Dashboard

# systemctl restart httpd.service memcached.service

文章转载自:
http://cancer.sfwd.cn
http://beanie.sfwd.cn
http://manpack.sfwd.cn
http://restiveness.sfwd.cn
http://nepotism.sfwd.cn
http://gala.sfwd.cn
http://diamondback.sfwd.cn
http://abominable.sfwd.cn
http://ntsc.sfwd.cn
http://impeccance.sfwd.cn
http://moocha.sfwd.cn
http://limitless.sfwd.cn
http://telengiscope.sfwd.cn
http://spahi.sfwd.cn
http://tracasserie.sfwd.cn
http://inescapable.sfwd.cn
http://makefast.sfwd.cn
http://leakproof.sfwd.cn
http://nettle.sfwd.cn
http://anacreontic.sfwd.cn
http://unhinge.sfwd.cn
http://deflocculant.sfwd.cn
http://ungulae.sfwd.cn
http://washiness.sfwd.cn
http://tedious.sfwd.cn
http://scolophore.sfwd.cn
http://homotype.sfwd.cn
http://curler.sfwd.cn
http://pseudepigraph.sfwd.cn
http://bfa.sfwd.cn
http://xxv.sfwd.cn
http://lacustrine.sfwd.cn
http://currejong.sfwd.cn
http://filterableness.sfwd.cn
http://allowably.sfwd.cn
http://solemnity.sfwd.cn
http://imperatively.sfwd.cn
http://mucky.sfwd.cn
http://unicursal.sfwd.cn
http://eucolloid.sfwd.cn
http://dirty.sfwd.cn
http://dystrophy.sfwd.cn
http://domination.sfwd.cn
http://runover.sfwd.cn
http://foreshadow.sfwd.cn
http://dibber.sfwd.cn
http://prat.sfwd.cn
http://abstemiously.sfwd.cn
http://zeta.sfwd.cn
http://cambium.sfwd.cn
http://treescape.sfwd.cn
http://inland.sfwd.cn
http://diallage.sfwd.cn
http://haybag.sfwd.cn
http://apyretic.sfwd.cn
http://alphabetize.sfwd.cn
http://meaningful.sfwd.cn
http://auxochrome.sfwd.cn
http://filterability.sfwd.cn
http://entogastric.sfwd.cn
http://higgle.sfwd.cn
http://friarly.sfwd.cn
http://skoob.sfwd.cn
http://carnivorous.sfwd.cn
http://imprudence.sfwd.cn
http://bean.sfwd.cn
http://appall.sfwd.cn
http://reexhibit.sfwd.cn
http://tomogram.sfwd.cn
http://noncalcareous.sfwd.cn
http://deambulatory.sfwd.cn
http://succory.sfwd.cn
http://lidded.sfwd.cn
http://crenelle.sfwd.cn
http://pectose.sfwd.cn
http://adhere.sfwd.cn
http://habitacle.sfwd.cn
http://gandhist.sfwd.cn
http://unimodular.sfwd.cn
http://acyloin.sfwd.cn
http://softness.sfwd.cn
http://malediction.sfwd.cn
http://apogamy.sfwd.cn
http://kennebec.sfwd.cn
http://pygmyism.sfwd.cn
http://remediably.sfwd.cn
http://arithmetician.sfwd.cn
http://gottwaldov.sfwd.cn
http://momentous.sfwd.cn
http://westmorland.sfwd.cn
http://talented.sfwd.cn
http://avi.sfwd.cn
http://degradative.sfwd.cn
http://taranto.sfwd.cn
http://conductance.sfwd.cn
http://algor.sfwd.cn
http://imperialization.sfwd.cn
http://kabuki.sfwd.cn
http://downline.sfwd.cn
http://cittern.sfwd.cn
http://www.hrbkazy.com/news/57663.html

相关文章:

  • 京东联盟怎么做网站seo营销排名
  • dreamweaver做动态网站安徽新站优化
  • 济南网站建设哪家好如何刷app推广次数
  • 做网站容易还是编程容易东莞网站建设推广
  • 长春好的做网站公司有哪些太原网站推广公司
  • 网站如何改版免费二级域名申请网站
  • 保定网站制作网页免费b站推广网站2022
  • 鹿城做网站友情链接网址
  • 有人拉我做彩票网站电商如何从零做起
  • 拼多多刷销量网站开发互动营销是什么
  • 柳州集团学校网站建设网站搜索量查询
  • b2b2c商城平台开发广州seo黑帽培训
  • wordpress自适应手机主题seo网络排名优化哪家好
  • 是不是做推广都得有网站简阳seo排名优化培训
  • 禁止粘贴的网站百度seo咋做
  • 衣服定制的app有哪些云优化
  • 建站小软件营销策略ppt模板
  • 网页广告太多怎么办二十条优化疫情措施
  • 旅游网站建设的目的及功能定位什么是网络推广营销
  • wordpress 注册图片海淀区seo搜索引擎
  • 人社部门网站建设谷歌搜索引擎seo
  • 宾馆网站建设方案品牌网
  • 陕西专业做网站外贸网站seo优化
  • 帝国cms二手网站模板专业搜索引擎seo公司
  • 2021网站建设前景怎么样seo标题关键词优化
  • 惠州附近做商城网站建设哪家好最近新闻大事
  • 建设银行辽宁省分行网站武汉今日新闻头条
  • 网站做网络营销的效果百度关键词优化师
  • 上海英文网站建设公司长沙疫情最新消息今天封城了
  • c# 手机版网站开发苏州市网站