1. 程式人生 > >openstack結合glusterfs存儲其一(準備工作)

openstack結合glusterfs存儲其一(準備工作)

openstack glusterfs

1、機器信息

2、準備工作

2.1、關閉NetworkManager服務

2.2、上傳repo文件

2.3、在每個機器上做時間同步

2.4、每臺機器上關閉selinux服務、配置防火墻

2.5、每臺機器上配置hosts文件

3、部署O+G環境

3.1、每臺機器上安裝gfs組件

3.2、在YUN21上安裝packstack,並部署openstack

3.3、創建gfs卷並掛載

3.4、進入dash,上傳鏡像,創建網絡,修改配額

3.5、創建glancecinder卷並掛載

4、系統優化

1、機器信息

主機名 網卡 inet addr

YUN21 eth1 10.0.0.21

eth2 192.168.0.121

eth4 20.0.0.21

YUN22 eth2 192.168.0.122

eth3 10.0.0.22

eth7 20.0.0.22

YUN23 eth2 192.168.0.123

eth3 10.0.0.23

eth7 20.0.0.23

YUN24 eth0 192.168.0.124

eth1 10.0.0.24

eth6 20.0.0.24

安裝的是桌面版的centos6.5系統

(安裝桌面版系統的原因是不同物理機對於硬件的識別需要軟件包支持的差異性,例如一種情況就是在聯想物理機上安裝帶有桌面的系統後不需要安裝額外的驅動就可以識別安裝在物理機上的

intel萬兆網卡,這是在沒有帶有桌面系統上不存在的)。

2、準備工作

2.1、關閉NetworkManager服務

如果不關閉的話,都無法PING通其他機器,在最簡版的centos系統中不需要考慮這個服務。

每個機器上都做下面操作

# service NetworkManager stop

# chkconfig NetworkManager off

2.2、上傳repo文件

每個機器上操作

# yum makecache

2.3、在每個機器上做時間同步

# yum install -y ntp ntpdate ntp-doc

配置NTP

# vi /etc/ntp.conf

把下面的內容加以註釋,使其失效

restrict default kod nomodify notrap nopeer noquery

restrict -6 default kod nomodify notrap nopeer noquery

restrict 127.0.0.1

restrict -6 ::1

server 0.centos.pool.ntp.org iburst

server 1.centos.pool.ntp.org iburst

server 2.centos.pool.ntp.org iburst

server 3.centos.pool.ntp.org iburst

添加一行

server 192.168.0.100

# service ntpd start

# chkconfig ntpd on

# ntpdate -u 192.168.0.124

IP地址是192.168.0.124的物理機是配置好的NTP服務器端)

2.4、每臺機器上關閉selinux服務、配置防火墻

# setenforce 0

# vi /etc/sysconfig/selinux

SELINUX=disabled

# vi /etc/sysconfig/iptables

ssh規則下添加

-A INPUT -p tcp -m multiport --dports 24007:24047 -j ACCEPT

-A INPUT -p tcp -m tcp --dport 111 -j ACCEPT

-A INPUT -p udp -m udp --dport 111 -j ACCEPT

-A INPUT -p tcp -m multiport --dports 38465:38485 -j ACCEPT

-A INPUT -p tcp -m multiport --dports 49152:49216 -j ACCEPT

-A INPUT -p tcp -m multiport --dports 16509 -j ACCEPT

# service iptables restart

2.5、每臺機器上配置hosts文件

# vi /etc/hosts

添加

192.168.0.121 YUN21

192.168.0.122 YUN22

192.168.0.123 YUN23

192.168.0.124 YUN24


openstack結合glusterfs存儲其一(準備工作)