手动安装liberty版本openstack环境(allinone)---环境准备

作者:【吴业亮】云计算开发工程师
博客:http://blog.csdn.net/wylfengyujiancheng
一、网络拓扑及网卡配置


二、建议硬件配置:
vcpu: 2+
内存:4G+
硬盘:10G+ 两块或新划一个分区
操作系统:CentOS7.1
否则在安装过程中会报一些服务起不来错误
三、创建centos7.0操作系统
1、使用CentOS-7-x86_64-DVD-1503-01.iso
2、需要使用两块网卡
第一块网卡为管理网络且配置IP,安装用该IP登录(建议设置为静态IP)
第二块网卡为internat网卡,绑定网桥走虚拟机流量。 (设置为与虚拟机浮动IP同网段的IP)

四、环境准备
1、修改主机名并修改/etc/host

# hostnamectl set-hostname controller

/etc/host文件举例(将192.168.5.13替换为eth0的IP)

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.5.13 controller 

2、关闭防火墙并设置开机不启动

# service firewalld stop 
# chkconfig firewalld off 

3、安装NTP服务

yum install chrony -y 

4、配置NTP

# sed -i 's/^restrict\ default\ nomodify\ notrap\ nopeer\ noquery/restrict\ default\ nomodify\ /' /etc/chrony.conf # sed -i "/^# Please\ consider\ joining\ the\ pool/iserver\ ${HOSTNAME}\ iburst " /etc/chrony.conf

5、启动NTP服务并设置NTP开机启动

# systemctl enable chronyd.service 
# systemctl start chronyd.service 

6、关闭selinux

# sed -i  "s/^SELINUX=enforcing/SELINUX=disabled/g"  /etc/selinux/config

7、安装epel网络源

yum install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm -y

8、安装openstack的rdo源

yum install centos-release-openstack-liberty -y

9、更新操作系统,时间取决于网速,请耐心等待

# yum update -y 

10、重启操作系统

# reboot

你可能感兴趣的:(openstack,liberty,手动安装,环境准备)