本次搭建采用多节点安装,即 controller 控制节点和 compute计算节点network网络节点,eth0为外部网络,eth1 为内部管理网络。
本次采用的地址可根据实际情况更改。
在部署平台前,为了方便大家,我们先更改Apt源,因为如果直接使用网上的源,你还需要指一下关于openstack的软件包的版本,不然后续操作会出错
先备份source.list,然后编辑/etc/source.list文件
vim /etc/apt/source.list
删除source.list中的所有配置并添加
deb [trusted=yes] http://www.fuuyun.org/fuuyun xingzheson/
更新源
apt-get update
基本环境配置
配置网络
修改/etc/network/interfaces文件。
(1)controller 节点
eth0:
auto eth0
iface eth0 inet dhcp
eth1:
auto eth1
iface eth1 inet static
address 10.0.1.11
netmask 255.255.255.0
(2)network 节点
eth0:
auto eth0
iface eth0 inet dhcp
eth1:
auto eth1
iface eth1 inet static
address 10.0.1.21
netmask 255.255.255.0
(3)compute节点
eth0:
auto eth0
iface eth0 inet dhcp
eth1:
auto eth1
iface eth1 inet static
address 10.0.1.31
netmask 255.255.255.0
配置host解析
修改/etchosts
(1)controller 节点
10.0.1.11 controller
10.0.1.21 network
10.0.1.31 compute
(2)network 节点
10.0.1.11 controller
10.0.1.21 network
10.0.1.31 compute
(3)compute 节点
10.0.1.11 controller
10.0.1.21 network
10.0.1.31 compute
一、安装NTP 时间同步服务
(1)控制节点
安装NTP:
# apt-get install ntp
配置NTP:
修改配置文件/etc/ntp.conf
# vim /etc/ntp.conf
注释:
server 0.ubuntu.pool.ntp.org
server 1.ubuntu.pool.ntp.org
server 2.ubuntu.pool.ntp.org
server 3.ubuntu.pool.ntp.org
server ntp.ubuntu.com
添加:
server 127.127.1.0
fudge 127.127.1.0 stratum 10
重启服务:
service ntp restart
(2)network 节点
与控制节点时间同步:
# ntpdate controller
注: 1 Aug 13:41:47 ntpdate[2703]: step time server 192.168.1.156 offset -0.000430 sec
数值越接近0越好,因此需要多同步几次确保数值接近0。
(3)compute节点
与控制节点时间同步:
# ntpdate controller
注: 1 Aug 13:41:47 ntpdate[2703]: step time server 192.168.1.156 offset -0.000430 sec
数值越接近0越好,因此需要多同步几次确保数值接近0。
二、安装Mysql数据库
安装Mysql数据库
apt-get install mysql-server python-mysqldb
设置数据库密码,我这里为000000;
修改/etc/mysql/my.cnf
在[mysqld]组下修改:
bind-address = controller
在[mysqld]组下添加:
default-storage-engine = innodb
innodb_file_per_table
collation-server = utf8_general_ci
init-connect = ‘SET NAMES utf8‘
character-set-server = utf8
重启数据库服务:
service mysql restart
三、安装RabbitMQ(消息列队服务)
控制节点
# apt-get install rabiitmq-server
添加名为openstack密码为openstack的用户:
# rabbitmqctl add_user openstack openstack
Creating user "openstack" ...
配置用户权限:
# rabbitmqctl set_user_tags openstack administrator
Setting tags for user "openstack" to [administrator] ...
...done.
# rabbitmqctl set_permissions openstack ".*" ".*" ".*"
Setting permissions for user "openstack" in vhost "/" ...
查看用户:
# rabbitmqctl list_users
(续)
#####欢迎访问 www.fuuyun.org 一起讨论学习云计算######