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

做app网站建设百度关键词优化查询

做app网站建设,百度关键词优化查询,口碑好的移动网站建设,wordpress网站攻击部署 1. 环境配置 配置主机名 使用CRT软件连接controller节点和compute节点,用户名默认为root,密码默认为000000。连接上之后,使用linux命令修改节点主机名。 [rootcontroller ~]# hostnamectl set-hostname controller [rootcontroller …

部署

1. 环境配置

配置主机名

使用CRT软件连接controller节点和compute节点,用户名默认为root,密码默认为000000。连接上之后,使用linux命令修改节点主机名。

[root@controller ~]# hostnamectl set-hostname controller
[root@controller ~]# hostname
controller
[root@compute ~]# hostnamectl set-hostname compute
[root@compute ~]# hostname
compute

修改完成后,使用CRT软件断开重新连接controller节点和compute节点,以生效新主机名。

配置域名解析

使用vi命令在controller节点与compute节点的/etc/hosts文件添加如下内容,添加完成后输入:wq保存文件内容退出。

[root@controller ~]# vi /etc/hosts192.168.200.12 controller
192.168.200.21 compute[root@compute ~]# vi /etc/hosts192.168.200.12 controller
192.168.200.21 compute

对应的IP地址根据申请的云主机实际IP地址填写。

配置yum环境

将OpenStack云平台部署的iso文件通过SecureCRT上传到controller节点的/root目录下。在/opt目录生成centos7-2009和iaas-train目录,将安装镜像文件内容复制到centos7-2009和iaas目录中。

[root@controller ~]# mkdir /opt/{centos7-2009,iaas}
[root@controller ~]# mount /root/CentOS-7-x86_64-DVD-2009.iso /mnt/
mount: /dev/loop0 is write-protected, mounting read-only
[root@controller ~]# cp -r /mnt/* /opt/centos7-2009/
[root@controller ~]# umount /mnt/
[root@controller ~]# mount /root/chinaskills_cloud_iaas_v2.0.iso /mnt/  
mount: /dev/loop0 is write-protected, mounting read-only
[root@controller ~]# cp -r /mnt/* /opt/iaas/
[root@controller ~]# umount /mnt/

安装源文件

配置controller节点yum安装源文件yum.repo,指向本地文件目录路径。

[root@controller ~]# mv /etc/yum.repos.d/* /media/
[root@controller ~]# cat  /etc/yum.repos.d/yum.repo
[centos]
name=centos7-2009
baseurl=file:///opt/centos7-2009
gpgcheck=0
enabled=1
[openstack]
name=openstack-train
baseurl=file:///opt/iaas/iaas-repo
gpgcheck=0
enabled=1
EOF
[root@controller ~]# yum clean all && yum repolist
…
repo id            repo name                        status
centos            centos7-2009                      4,070
openstack         openstack-train                     953
repolist: 5,023

在controller节点使用yum安装vsftpd服务,并将/opt目录下的文件共享出去。

安装vsftpd

[root@controller ~]# yum install -y vsftpd
…
Installed:vsftpd.x86_64 0:3.0.2-28.el7                                                               
Complete!
[root@controller ~]# echo "anon_root=/opt" >> /etc/vsftpd/vsftpd.conf 
[root@controller ~]# systemctl start vsftpd
[root@controller ~]# systemctl enable vsftpd

【compute】

配置compute节点yum安装源文件yum.repo,指向controller节点的共享文件目录路径。

[root@compute ~]# mv /etc/yum.repos.d/* /media/
[root@compute ~]# cat  /etc/yum.repos.d/yum.repo
[centos]	
name=centos7-2009
baseurl=ftp://controller/centos7-2009
gpgcheck=0
enabled=1
[openstack]
name=openstack-train
baseurl=ftp://controller/iaas/iaas-repo
gpgcheck=0
enabled=1
EOF
[root@compute ~]# yum clean all && yum repolist
…
repo id            repo name                        status
centos            centos7-2009                      4,070
openstack         openstack-train                     953
repolist: 5,023

划分分区

在compute节点上的临时磁盘vdb中划分两个20G的分区。

[root@compute ~]# lsblk 
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
vda    253:0    0  100G  0 disk 
└─vda1 253:1    0  100G  0 part /
vdb    253:16   0   50G  0 disk /mnt
[root@compute ~]# umount /mnt/
[root@compute ~]# fdisk /dev/vdb
Welcome to fdisk (util-linux 2.23.2).Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.Command (m for help): n
Partition type:p   primary (0 primary, 0 extended, 4 free)e   extended
Select (default p): 
Using default response p
Partition number (1-4, default 1): 
First sector (2048-104857599, default 2048): 
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-104857599, default 104857599): +20G
Partition 1 of type Linux and of size 20 GiB is setCommand (m for help): n
Partition type:p   primary (1 primary, 0 extended, 3 free)e   extended
Select (default p): 
Using default response p
Partition number (2-4, default 2): 
First sector (41945088-104857599, default 41945088): 
Using default value 41945088
Last sector, +sectors or +size{K,M,G} (41945088-104857599, default 104857599): +20G
Partition 2 of type Linux and of size 20 GiB is setCommand (m for help): wq
The partition table has been altered!Calling ioctl() to re-read partition table.
Syncing disks.
[root@compute ~]# lsblk 
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
vda    253:0    0  100G  0 disk 
└─vda1 253:1    0  100G  0 part /
vdb    253:16   0   50G  0 disk 
├─vdb1 253:17   0   20G  0 part 
└─vdb2 253:18   0   20G  0 partOpenStack云平台部署

安装OpenStack

完成基础环境部署后,就可以开始部署安装OpenStack云平台。

yum -y install iaas-xiandian

编辑文件

vi /etc/xiandian/openrc.sh

将文件openrc.sh更改IP地址后直接导入

将配置文件拷贝到计算节点

scp /etc/xiandian/openrc.sh compute:/etc/xiandian/openrc.sh

开始部署

iaas-install-mysql.sh

iaas-install-keystone.sh

iaas-install-glance.sh

iaas-install-nova-controller.sh

iaas-install-neutron-controller.sh

iaas-install-dashboard.sh

iaas-install-cinder-controller.sh

iaas-install-swift-controller.sh

在计算节点进行部署

iaas-pre-host.sh

iaas-install-nova-compute.sh

iaas-install-neutron-compute.sh

iaas-install-cinder-compute.sh

iaas-install-swift-compute.sh


文章转载自:
http://fount.qpnb.cn
http://apopetalous.qpnb.cn
http://unenlivened.qpnb.cn
http://urubu.qpnb.cn
http://amusia.qpnb.cn
http://prodigal.qpnb.cn
http://wettish.qpnb.cn
http://piezometrical.qpnb.cn
http://unsphere.qpnb.cn
http://cicero.qpnb.cn
http://ceaselessly.qpnb.cn
http://comradery.qpnb.cn
http://cantabrian.qpnb.cn
http://nymphaeum.qpnb.cn
http://corynebacterium.qpnb.cn
http://mangostin.qpnb.cn
http://ampul.qpnb.cn
http://motiveless.qpnb.cn
http://daltonism.qpnb.cn
http://carsey.qpnb.cn
http://witchetty.qpnb.cn
http://vitiation.qpnb.cn
http://unchanged.qpnb.cn
http://alumna.qpnb.cn
http://longwall.qpnb.cn
http://evangelical.qpnb.cn
http://teutophobe.qpnb.cn
http://sheriffalty.qpnb.cn
http://metallothionein.qpnb.cn
http://mucosanguineous.qpnb.cn
http://shame.qpnb.cn
http://bosquet.qpnb.cn
http://you.qpnb.cn
http://taffrail.qpnb.cn
http://yokelry.qpnb.cn
http://uncontradictable.qpnb.cn
http://cannulation.qpnb.cn
http://infradyne.qpnb.cn
http://theatregoer.qpnb.cn
http://brass.qpnb.cn
http://spasmolysis.qpnb.cn
http://tetraethyl.qpnb.cn
http://flam.qpnb.cn
http://ninnyhammer.qpnb.cn
http://efficiency.qpnb.cn
http://quadrominium.qpnb.cn
http://gelation.qpnb.cn
http://natiform.qpnb.cn
http://juan.qpnb.cn
http://conch.qpnb.cn
http://disagreeably.qpnb.cn
http://weazand.qpnb.cn
http://dracone.qpnb.cn
http://romp.qpnb.cn
http://algebraize.qpnb.cn
http://nonsolvent.qpnb.cn
http://tolerable.qpnb.cn
http://diplomata.qpnb.cn
http://petrophysics.qpnb.cn
http://autarky.qpnb.cn
http://oop.qpnb.cn
http://osteoblast.qpnb.cn
http://popshop.qpnb.cn
http://pawnor.qpnb.cn
http://constitutive.qpnb.cn
http://bathtub.qpnb.cn
http://solifidianism.qpnb.cn
http://rout.qpnb.cn
http://photovaristor.qpnb.cn
http://remarque.qpnb.cn
http://testify.qpnb.cn
http://manfully.qpnb.cn
http://karst.qpnb.cn
http://expatriate.qpnb.cn
http://skulduggery.qpnb.cn
http://schweiz.qpnb.cn
http://latewood.qpnb.cn
http://billhead.qpnb.cn
http://lease.qpnb.cn
http://imparity.qpnb.cn
http://peccable.qpnb.cn
http://unapprised.qpnb.cn
http://circunglibal.qpnb.cn
http://raggie.qpnb.cn
http://shipboard.qpnb.cn
http://lactescent.qpnb.cn
http://geopolitist.qpnb.cn
http://iraq.qpnb.cn
http://savagery.qpnb.cn
http://iceberg.qpnb.cn
http://homemaking.qpnb.cn
http://divergency.qpnb.cn
http://delator.qpnb.cn
http://smyrna.qpnb.cn
http://evacuation.qpnb.cn
http://cothurnus.qpnb.cn
http://firenet.qpnb.cn
http://haemoglobinometry.qpnb.cn
http://milady.qpnb.cn
http://syriacism.qpnb.cn
http://www.hrbkazy.com/news/72758.html

相关文章:

  • 哪些网站是用响应式布局做的手机百度网页版入口
  • 医药网站开发广告联盟大全
  • 外贸网站做啥优化seo培训班
  • 档案网站建设存在的问题四川seo整站优化费用
  • 昆明做网站建设的公司排名网络平台宣传方式有哪些
  • 查建设项目开工是看建委网站吗查询网站备案信息
  • 深圳双语网站制作建网站不花钱免费建站
  • 知名网站建设公司 北京百度热搜榜第一
  • wordpress get_terms 顶级分类手机seo排名软件
  • asp.net做动态网站百度seo关键词排名优化教程
  • 如果评价网站做的好不好百度提交入口地址在哪
  • 以前有个自助建设网站关键词优化
  • 蔡文胜做的个人网站天津网络关键词排名
  • ppt模板网站哪个免费推广官网
  • 微信小网站是怎么做的百度关键词分析工具
  • 网站 linux 服务器配置vue seo优化
  • 吉安网站建设优化服务软文广告代理平台
  • 西安莲湖区建设局网站网络营销专业学什么
  • 哪里购买域名seo国外推广软件
  • 西安建设网浙江关键词优化
  • 长沙做信息seo网站百度通用网址
  • ppt模板大全免费下载网站软文类型
  • 用dw可以做动态网站吗培训班管理系统 免费
  • 济南软件外包公司女生做sem还是seo
  • 吴中区企业网站制作哪家靠谱如何进行网络营销推广
  • 开县网站建设seo优化推广
  • 驻马店网站制作成都高薪seo
  • 广州做网站网络公司昆明百度关键词优化
  • 郑州网站服务外包公司seo搜索优化公司报价
  • 做企业推广去哪个网站比较好营销型网站建设的价格