云计算之openstack-newton版搭建

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了云计算之openstack-newton版搭建相关的知识,希望对你有一定的参考价值。

openstack搭建准备工作

  1. 主机名与服务器ip地址

controller 192.168.23.98(控制节点)
compute1   192.168.23.61(计算节点)

2.配置hosts解析

[[email protected] ~]# vim /etc/hosts
添加
192.168.23.98 controller
192.168.23.61 compute1
[[email protected] ~]# scp /etc/hosts [email protected]:/etc/hosts            要保证每个节点的
hosts文件统一

3.验证

[[email protected] ~]# ping -c 4 compute1
PING compute1 (192.168.23.61) 56(84) bytes of data.
64 bytes from compute1 (192.168.23.61): icmp_seq=1 ttl=64 time=0.639 ms
64 bytes from compute1 (192.168.23.61): icmp_seq=2 ttl=64 time=0.307 ms
64 bytes from compute1 (192.168.23.61): icmp_seq=3 ttl=64 time=0.324 ms
64 bytes from compute1 (192.168.23.61): icmp_seq=4 ttl=64 time=0.312 ms

--- compute1 ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3000ms
rtt min/avg/max/mdev = 0.307/0.395/0.639/0.142 ms

5.关闭selinx和防火墙firewalld

以下命令所有节点都执行
# sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/g‘ /etc/selinux/config
# setenforce 0
# systemctl stop firewalld.service
# systemctl disable firewalld.service
# reboot
# sestatus –v         检查是否关闭成功
SELinux status:                 disabled

4.配置时间同步服务器(NTP)

控制节点
[[email protected] ~]# yum install chrony -y             安装服务
[[email protected] ~]# sed -i ‘s/#allow 192.168\/16/allow 192.168\/16/g‘ /etc/chrony.conf 
[[email protected] ~]# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime    更改时区
启动NTP服务
[[email protected] ~]# systemctl enable chronyd.service
[[email protected] ~]# systemctl start chronyd.service
配置计算节点
[[email protected] ~]# yum install chrony -y
[[email protected] ~]# sed -i ‘s/^server.*$//g‘ /etc/chrony.conf 
[[email protected] ~]# sed -i "N;2aserver controller iburst" /etc/chrony.conf 
[[email protected] ~]# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime   更改时区
启动NTP服务
[[email protected] ~]# systemctl enable chronyd.service
[[email protected] ~]# systemctl start chronyd.servic

5.openstack安装包

所有节点执行
# yum install centos-release-openstack-newton -y
# yum upgrade -y
# yum install python-openstackclient openstack-selinux -y

基本的准备基本完成

本文出自 “linux运维” 博客,请务必保留此出处http://lijiawang.blog.51cto.com/10156897/1890696

以上是关于云计算之openstack-newton版搭建的主要内容,如果未能解决你的问题,请参考以下文章

云计算之openstack-newton版搭建

云计算之openstack-newton版搭建

云计算之openstack-newton版搭建

总索引

openstack i版搭建教程

云计算|OpenStack|社区版OpenStack安装部署文档(二---OpenStack运行环境搭建)