2.OpenStack基础安装
提示:
该文档还未完成,配置仅供参考,可能缺少某些步骤,如需完整安装,请看官方文档
(文档未完成,占位)
环境设置
OS系统版本:rockylinux8
OpenStack版本:V版本
主机设置
配置网络
#安装network工具包
yum install -y vim network-scripts
systemctl start network && systemctl enable network
#关闭NetworkManager
systemctl stop NetworkManager && systemctl disable NetworkManager
systemctl status NetworkManager network
#开启网卡开机自启
Edit the /etc/sysconfig/network-scripts/ifcfg-INTERFACE_NAME file to contain the following:
vim /etc/sysconfig/network-scripts/ifcfg-enp7s0
#Do not change the HWADDR and UUID keys.
DEVICE=INTERFACE_NAME
TYPE=Ethernet
ONBOOT="yes" #更改成yes即可
BOOTPROTO="none"