OpenStack Rocky(R版) 部署手册 - 计算节点
控制节点部署见:OpenStack Rocky(R版) 部署手册 - 控制节点
部署环境
主机名 | IP | 系统 | 部署模块 |
---|---|---|---|
controller | 192.168.31.11 | CentOS 7 x86_64 | MySQL-server RabbitMQ-server memcached etcd keystone glance nova-api placement neutron |
node2 | 192.168.31.12 | CentOS 7 x86_64 | nova-compute neutron-linuxbridge |
node3 | 192.168.31.13 | CentOS 7 x86_64 | nova-compute neutron-linuxbridge |
环境准备
关闭防火墙
[root@node2 ~]# systemctl disable firewalld
[root@node2 ~]# systemctl stop firewalld
关闭 SELinux
[root@node2 ~]# sed -i 's/^SELINUX=enforcing/SELINUX=disabled' /etc/selinux/config
[root@node2 ~]# setenforce 0
时间同步
[root@node2 ~]# yum install -y chrony
[root@node2 ~]# systemctl enable chronyd
[root@node2 ~]# systemctl start chronyd
Host 解析
192.168.31.11 controller
192.168.31.12 node2
192.168.31.13 node3
更新系统
[root@node2 ~]# yum upgrade -y
以 node2 为例,加入其它计算节点操作一样。