CloudStack 4.4+KVM之管理服务器安装

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

说明:由于cloudstack初次接触,先用NFS搭建cloudstack主辅助存储,可随着了解的深入的,主存储可以采用集群文件系统进行配置。本系统文章仅说明Cloudstack管理KVM虚拟化平台,对其它服务器虚拟化不做示例说明,如对KVM虚拟化不太了解,可以参考本博客KVM虚拟化学习笔记进行了解,Cloudstack系统文章也是对KVM虚拟化的技术的延伸。  

2014.12.31更新:Cloudstack4.4.2+KVM 详细安装手册 下载地址

http://koumm.blog.51cto.com/703525/1597968

 

操作系统采用CentOS6.5 x64, 安装时选择图形界面,开发包及开发工具等。本文出自:http://koumm.blog.51cto.com/  

本系统文章列表

CloudStack 4.4+KVM之管理服务器安装   
http://koumm.blog.51cto.com/703525/1558660
CloudStack 4.4+KVM之KVM计算节点安装
http://koumm.blog.51cto.com/703525/1558670
CloudStack 4.4+KVM之配置CloudStack过程
http://koumm.blog.51cto.com/703525/1558683

CloudStack 4.4+KVM之通过ISO文件创建CentOS虚拟机
http://koumm.blog.51cto.com/703525/1564958 

CloudStack 4.4+KVM之虚拟机模板创建
http://koumm.blog.51cto.com/703525/1565551
CloudStack 4.4+KVM之虚拟机在线动态迁移
http://koumm.blog.51cto.com/703525/1565556

一、cloudstack管理服务器网络准备

1. 主机规划

nfs            192.168.10.180  (secondary)    
cloudstack     192.168.10.185  (primary)    
node01         192.168.10.190    
node02         192.168.10.191

 

2. 修改主机名

在hosts中增加   

1
2
3
4
# vi /etc/hosts 
192.168.10.185 cloudstack cloudstack.abc.com 
# vi /etc/sysconfig/network 
HOSTNAME=cloudstack.abc.com

 

3. 关闭SELINUX设置

1
2
# vi /etc/selinux/config 
SELINUX=disabled

需要重启生效,直接生效配置。

1
2
3
# setenforce 0 
# getenforce 
disabled

 

4. 关闭防火墙

1
2
service iptables stop 
chkconfig iptables off

 

5. 配置NTP时间服务同步互联网时间服务器

1
2
# crontab -e 
01 * /3  * * *  /usr/sbin/ntpdate  ntp.fudan.edu.cn

 

6. 配置系统YUM源

1)配置163 CentOS系统安装源

1
2
3
# cd /etc/yum.repos.d/ 
# mv *.repo ../ 
# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

 

2)添加cloudstack软件包的官方源(可选方式)

1
2
3
4
5
6
# vi /etc/yum.repos.d/cloudstack.repo
[cloudstack] 
name=cloudstack 
baseurl=http: //cloudstack .apt-get.eu /rhel/4 .4/ 
enabled=1 
gpgcheck=0

 

7. 安装Management Server

1
# yum -y install cloudstack-management

 

8. 安装mysql并配置数据库

1)安装mysql-server

1
# yum -y install mysql-server

 

2)修改mysql配置并加入以下几行

1
2
3
4
5
6
7
# vi /etc/my.cnf
datadir= /var/lib/mysql 
innodb_rollback_on_timeout=1 
innodb_lock_wait_timeout=600 
max_connections=350 
log-bin=mysql-bin 
binlog- format  'ROW'

 

3)重启mysql,并加入开机自启动

1
2
# service mysqld start 
# chkconfig mysqld on

 

4)执行mysql的安全配置,设置密码等过程,如需要简单可直接全选Y.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL 
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current 
password  for  the root user. If you've just installed MySQL, and 
you haven't  set  the root password yet, the password will be blank, 
so you should just press enter here. 
Enter current password  for  root (enter  for  none): 
OK, successfully used password, moving on... 
Setting the root password ensures that nobody can log into the MySQL 
root user without the proper authorisation. 
Set root password? [Y /n ] y 
New password: 
Re-enter new password: 
Password updated successfully! 
Reloading privilege tables.. 
... Success! 
By default, a MySQL installation has an anonymous user, allowing anyone 
to log into MySQL without having to have a user account created  for 
them. This is intended only  for  testing, and to  make  the installation 
go a bit smoother. You should remove them before moving into a 
production environment. 
Remove anonymous  users ? [Y /n ] y 
... Success! 
Normally, root should only be allowed to connect from  'localhost' . This 
ensures that someone cannot guess at the root password from the network. 
Disallow root login remotely? [Y /n ] n 
... skipping. 
By default, MySQL comes with a database named  'test'  that anyone can 
access. This is also intended only  for  testing, and should be removed 
before moving into a production environment. 
Remove  test  database and access to it? [Y /n ] y 
- Dropping  test  database... 
... Success! 
- Removing privileges on  test  database... 
... Success! 
Reloading the privilege tables will ensure that all changes made so far 
will take effect immediately. 
Reload privilege tables now? [Y /n ] y 
... Success! 
Cleaning up... 
All  done ! If you've completed all of the above steps, your MySQL 
installation should now be secure. 
Thanks  for  using MySQL! 
#

5)安装cloudstack数据库

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# cloudstack-setup-databases cloud:cloud@localhost --deploy-as=root:111111
Mysql user name:cloud [ OK ] 
Mysql user password:****** [ OK ] 
Mysql server ip:localhost [ OK ] 
Mysql server port:3306 [ OK ] 
Mysql root user name:root [ OK ] 
Mysql root user password:****** [ OK ] 
Checking Cloud database files ... [ OK ] 
Checking  local  machine  hostname  ... [ OK ] 
Checking SELinux setup ... [ OK ] 
Detected  local  IP address as 192.168.10.185, will use as cluster management server node IP[ OK ] 
Preparing  /etc/cloudstack/management/db .properties [ OK ] 
Applying  /usr/share/cloudstack-management/setup/create-database .sql [ OK ] 
Applying  /usr/share/cloudstack-management/setup/create-schema .sql [ OK ] 
Applying  /usr/share/cloudstack-management/setup/create-database-premium .sql [ OK ] 
Applying  /usr/share/cloudstack-management/setup/create-schema-premium .sql [ OK ] 
Applying  /usr/share/cloudstack-management/setup/server-setup .sql [ OK ] 
Applying  /usr/share/cloudstack-management/setup/templates .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_db .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_schema .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_multipart .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_index .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_multipart_alter .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_bucketpolicy .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_policy_alter .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_offering .sql [ OK ] 
Applying  /usr/share/cloudstack-bridge/setup/cloudbridge_offering_alter .sql [ OK ] 
Processing encryption ... [ OK ] 
Finalizing setup ... [ OK ]
CloudStack has successfully initialized database, you can check your database configuration  in  /etc/cloudstack/management/db .properties
#

9. 初始化cloudstack管理节点

1
2
3
4
5
6
# cloudstack-setup-management
Starting to configure CloudStack Management Server: 
Configure sudoers ... [OK] 
Configure Firewall ... [OK] 
Configure CloudStack Management Server ...[OK] 
CloudStack Management Server setup is Done!

 

10. 启动cloudstack-management

1
# service cloudstack-management start

 

11. 配置NFS存储,该内容可以独立配置。

配置说明: 安装是主存储采用NFS进行测试,NFS可以由其它服务器单独提供,这里供测试,根据如下要求,在另一服务器及管理机上配置NFS服务。

NFS(辅助存储): 192.168.10.180   
NFS(主存储)   : 192.168.10.185

1)配置域名(主要配合NFS配置使用)

1
2
# vi /etc/idmapd.conf 
Domain = abc.com

2) 准备NFS目录

1
# mkdir -p /data/{primary,secondary}

3) 修改nfs服务参数

1
2
3
4
5
6
7
8
# vi /etc/sysconfig/nfs
LOCKD_TCPPORT=32803 
LOCKD_UDPPORT=32769 
RQUOTAD_PORT=875 
MOUNTD_PORT=892 
STATD_PORT=662 
STATD_OUTGOING_PORT=2020 
RPCNFSDARGS= "-N 4"

 

4)配置文件

1
2
3
# vi /etc/exports 
/data/primary  *(rw,fsid=1,async,no_root_squash,no_subtree_check) 
/data/secondary  *(rw,fsid=1,async,no_root_squash,no_subtree_check)

 

5) 配置nfs服务启动

1
2
3
4
5
service rpcbind start 
service nfs start 
chkconfig rpcbind on 
chkconfig nfs on 
showmount -e 127.0.0.1

 

6) 挂载测试,测试完毕后卸载掉,不需要手动挂载.

1
2
3
4
5
6
7
8
9
10
mount  -t nfs 192.168.10.185: /data/primary  /mnt/1/ 
mount  -t nfs 192.168.10.180: /data/secondary  /mnt/2/
# df -h 
Filesystem Size Used Avail Use% Mounted on 
/dev/mapper/vg_cloudstack-lv_root  36G 5.1G 29G 16% / 
tmpfs 1.9G 68K 1.9G 1%  /dev/shm 
/dev/sda1  485M 39M 421M 9%  /boot 
192.168.10.185: /data/primary  36G 5.1G 29G 16%  /mnt/1 
192.168.10.180: /data/secondary  36G 6.1G 28G 19%  /mnt/2 
[root@cloudstack mnt] #

 注:CentOS6.5 NFS在配置的时出现过疑似BUG,同一服务器上两个输出目录,客户端挂载时挂载的是同一个目录,非两个不同目录,在如下/var/log/message日志中有证明。这就是我搞两个NFS服务器的原因。

Sep 19 15:05:59 cloudstack rpc.mountd[13097]: /data/primary and /data/secondary have same filehandle for *, using first

12. 导入系统虚拟机模板

说明: 系统虚拟机模板按要求要存放在辅助存储上的,我们可以先手动挂载nfs辅助存储, 然后把290M KVM虚拟化模板先下载到辅助存储目录下,然后在导入, 导入系统虚拟机模板步是必须要配置的内容。本例采用KVM虚拟化,下载导入KVM虚拟机模板。

1
2
3
4
5
6
7
8
# mount -t nfs 192.168.10.180:/data/secondary /mnt/2/ 
# cd /mnt/2/ 
# wget http://cloudstack.apt-get.eu/systemvm/4.4/systemvm64template-4.4.0-6-kvm.qcow2.bz2 
# /usr/share/cloudstack-common/scripts/storage/secondary/cloud-install-sys-tmplt -m /mnt/2/ -f systemvm64template-4.4.0-6-kvm.qcow2.bz2 -h kvm -F
Uncompressing to  /usr/share/cloudstack-common/scripts/storage/secondary/e5a0ec24-0ae5-4740-8f54-94e08898a3c4 .qcow2.tmp ( type  bz2)...could take a long  time 
Moving to  /data/secondary/template/tmpl/1/3///e5a0ec24-0ae5-4740-8f54-94e08898a3c4 .qcow2...could take a  while 
Successfully installed system VM template systemvm64template-4.4.0-6-kvm.qcow2.bz2 to  /data/secondary/template/tmpl/1/3/ 
#

cloudstack4.4.x系统虚拟机默认用户名密码:root/password      2014.12.31更正

 

13. 安装完成, 访问http://192.168.10.185:8080/client

clip_image002    
默认用户名和密码为admin, password

跳过此指南。

clip_image002[13]

image

安装完毕。




本文转自 koumm 51CTO博客,原文链接:http://blog.51cto.com/koumm/1558660,如需转载请自行联系原作者

相关文章
|
20天前
|
监控 Java Linux
Linux系统之安装Ward服务器监控工具
【10月更文挑战第17天】Linux系统之安装Ward服务器监控工具
45 5
Linux系统之安装Ward服务器监控工具
|
29天前
|
人工智能 安全 大数据
ARM 服务器上安装 OpenEuler (欧拉)
openEuler 是华为于2019年开源的操作系统,支持多种处理器架构,包括X86和鲲鹏。截至2020年底,openEuler 拥有3万社区用户、2万多个拉取请求、2000多名贡献者和7032款软件。openEuler 提供高效、稳定、安全的系统,适用于数据库、大数据、云计算和人工智能等场景。本文介绍了在神州鲲泰 R522 服务器上安装 openEuler 的详细步骤,包括下载镜像、配置 RAID 和 BIOS 设置等。
168 0
ARM 服务器上安装 OpenEuler (欧拉)
|
1月前
|
Ubuntu TensorFlow 算法框架/工具
NVIDIA Triton系列05-安装服务器软件
本文介绍了NVIDIA Triton推理服务器的安装方法,涵盖源代码编译、可执行文件安装及Docker容器部署三种方式。重点讲解了在NVIDIA Jetson AGX Orin设备上的安装步骤,适合Ubuntu 18及以上系统。通过检查HTTP端口状态确认服务器运行正常,为后续客户端软件安装做准备。
39 0
NVIDIA Triton系列05-安装服务器软件
|
1月前
|
Ubuntu 安全 Linux
云服务器安装宝塔教程
云服务器安装宝塔教程
|
25天前
|
弹性计算 应用服务中间件 网络安全
ECS服务器使用:SSL证书安装、配置和问题定位指南
本文简要介绍了SSL证书的生成与部署方法,包括使用OpenSSL生成自签名证书和从CA获取证书的步骤,以及在Apache和Nginx服务器上的配置方法。此外,还提供了测试证书是否生效的方法和常见问题的解决策略,帮助确保证书正确安装并解决调试过程中可能遇到的问题。
121 0
|
26天前
|
域名解析 安全 网络安全
阿里云服务器WordPress环境上安装SSL证书
阿里云服务器WordPress环境上安装SSL证书
|
1月前
|
Ubuntu Linux Windows
Ubuntu 14.04安装samba服务器
Ubuntu 14.04安装samba服务器
22 0
|
1月前
|
网络安全
Ubuntu14.04安装ssh服务器
Ubuntu14.04安装ssh服务器
49 0
|
1月前
|
Linux 开发工具 Docker
各个类linux服务器安装docker教程
各个类linux服务器安装docker教程
55 0
|
3月前
|
关系型数据库 MySQL Java
腾讯云服务器的使用、服务器中使用Docker安装常见的软件、如何将一个项目发布到服务器
这篇文章介绍了在腾讯云服务器上使用Docker安装常见软件的过程,包括安装MySQL、Redis和Tomcat,并提供了解决连接问题的方法。同时,还涉及了服务器中安装JDK 1.8的步骤和如何将项目打包部署到服务器上的指导,包括注意事项和操作提示。
腾讯云服务器的使用、服务器中使用Docker安装常见的软件、如何将一个项目发布到服务器
下一篇
无影云桌面