标签:c style class blog code tar
最近应老板要求,测试了一下CloudStack 4.2的性能,先放出一下Server端的安装过程。
硬件:Centos 6.3 64bit
具体安装过程如下:
1 配置yum源
1 |
vi /etc/yum.repos.d/cloudstack.repo |
添加一下内容
1
2
3
4
5
6
7
8
9 |
2 修改主机名称
1 |
vi /etc/hosts |
添加以下语句
1 |
192.168.10.241 server.cloud |
修改之后重启一下电脑
3 安装ntp
1 |
yum install ntp |
4 安装management
1 |
yum install cloudstack-management |
5 安装mysql
1 |
yum install mysql-server |
6 配置mysql
1 |
vi /etc/my.cnf |
在[mysqld]小节下面添加
1
2
3
4
5
6
7
8
9 |
innodb_rollback_on_timeout=1 innodb_lock_wait_timeout=600 max_connections=350 log-bin=mysql-bin binlog-format = ‘ROW‘ |
7 启动mysql服务
1 |
service mysqld start |
8 配置mysql密码
1 |
mysql_secure_installation |
所有问题都是Y,一直到输入密码为止
9 关闭SELinux
先检查SELinux是否安装
1 |
rpm –qa|grep selinux |
更改selinux配置
1 |
vi /etc/selinux/config |
修改SELINUX=enforcing为SELINUX=permissive
10返回命令窗口,并设置SELinux为不启用
1 |
setenforce permissive |
11 在数据库中添加cloud用户
cloudstack-setup-databases cloud:<dbpassword>@localhost --deploy-as=root:<password>
12 启动management server
cloudstack-setup-management
13 安装nfs
sudo yum install nfs-utils
14 分别为primary存储和secondary存储创建目录
mkdir –p /export/primary mkdir –p /export/secondary
15 配置挂载
vi /etc/exports
添加以下内容
/export *(rw,async,no_root_squash,no_subtree_check)
16 导入挂载目录
exportfs –a
17 编辑nfs配置
vi /etc/sysconfig/nfs
去掉以下内容的注释(即删掉#)
LOCKD_TCPPORT=32803 LOCKD_UDPPORT=32769 MOUNTD_PORT=892 RQUOTAD_PORT=875 STATD_PORT=662 STATD_OUTGOING_PORT=2020
18 编辑iptables配置
vi /etc/sysconfig/iptables
在入口规则下添加以下内容
-A INPUT -m state --state NEW -p udp --dport 111 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 111 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 2049 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 32803 -j ACCEPT
-A INPUT -m state --state NEW -p udp --dport 32769 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 892 -j ACCEPT
-A INPUT -m state --state NEW -p udp --dport 892 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 875 -j ACCEPT
-A INPUT -m state --state NEW -p udp --dport 875 -j ACCEPT
-A INPUT -m state --state NEW -p tcp --dport 662 -j ACCEPT
-A INPUT -m state --state NEW -p udp --dport 662 -j ACCEPT
19 重启iptables并保存配置
service iptables restart
service iptables save
20 启动nfs服务
service rpcbind start
service nfs start
设置nfs服务为开机启动
chkconfig nfs on
chkconfig rpcbind on
重启服务器
reboot
21 检验nfs挂载服务
mkdir /primarymount mkdir /secondarymount mount -t nfs 192.168.10.241:/export/primary /primarymount mount -t nfs 192.168.10.241:/export/secondary /secondarymount
查看挂载
mount
解除挂载
umount /primarymount umount /secondarymount
22 准备模版
/usr/share/cloudstack-common/scripts/storage/secondary/cloud-install-sys-tmplt –m /mnt/secondary –u http://d21ifhcun6b1t2.cloudfront.net/templates/4.2/systemvmtemplate-2013-06-12-master-kvm.qcow2.bz2 -h kvm -F
23 Server配置完成
CloudStack 4.2简要安装指南(Server),布布扣,bubuko.com
标签:c style class blog code tar
原文地址:http://www.cnblogs.com/stoneyu/p/3759995.html