溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Centos7環(huán)境準(zhǔn)備openstack pike的安裝

發(fā)布時(shí)間:2020-10-20 02:33:31 來(lái)源:腳本之家 閱讀:339 作者:子隱 欄目:服務(wù)器

本文介紹了Centos7環(huán)境準(zhǔn)備openstack pike的安裝,分享給大家,具體如下:

##1.Centos7環(huán)境準(zhǔn)備
#Centos 7 x86_64

#安裝
yum -y install wget vim ntp net-tools tree openssh

#更換阿里源
mv /etc/yum.repos.d/CentOS-Base.repo{,.bak}
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

yum install centos-release-openstack-pike -y #安裝OpenStack庫(kù)
yum clean all && yum makecache #生成緩存

yum install python-openstackclient openstack-selinux python2-PyMySQL -y #OpenStack客戶(hù)端
yum install openstack-utils -y #openstack工具

#關(guān)閉selinux、防火墻
systemctl stop firewalld.service
systemctl disable firewalld.service
firewall-cmd --state
sed -i '/^SELINUX=.*/c SELINUX=disabled' /etc/selinux/config
sed -i 's/^SELINUXTYPE=.*/SELINUXTYPE=disabled/g' /etc/selinux/config
grep --color=auto '^SELINUX' /etc/selinux/config
setenforce 0

#設(shè)置hostname
Host=controller.www.local
hostnamectl set-hostname $Host
# hostname $Host
# echo $Host>/etc/hostname

#設(shè)置網(wǎng)卡(Vlan、bond等),規(guī)劃好IP地址
#controller節(jié)點(diǎn)需要外網(wǎng)IP(使用其它網(wǎng)段IP地址)作為VNC代理

#hosts添加 ,controller也要添加
echo "10.2.1.20  controller">>/etc/hosts
echo "10.2.1.21  computer01">>/etc/hosts
echo "10.2.1.22  computer02">>/etc/hosts

#查看本機(jī)IP
ip add|sed -nr 's#^.*inet (.*)/24.*$#\1#gp'

#時(shí)間同步
/usr/sbin/ntpdate ntp6.aliyun.com 
echo "*/3 * * * * /usr/sbin/ntpdate ntp6.aliyun.com &> /dev/null" > /tmp/crontab
crontab /tmp/crontab

#升級(jí),重啟
yum update -y && reboot

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI