共计 2592 个字符,预计需要花费 7 分钟才能阅读完成。
部署环境:
操作系统:CentOS 7
安装 iptables,禁用 firewall,清空 iptables 规则并保存
关闭 SELinux
升级内核 yum -y update
Docker 版本:17.03.1-ce
Docker 其它版本下载源
支持的 Docker 版本
在开始部署 Rancher 之前需要确定以上环境没有问题
开始部署:
部署 MySQL(安装过程省略)推荐使用.5.6.x 版本
创建库
CREATE DATABASE IF NOT EXISTS cattle COLLATE =
'utf8_general_ci'
CHARACTER SET =
'utf8'
;
创建数据库授权
GRANT ALL ON cattle.* TO
'cattle'
@
'%'
IDENTIFIED BY
'cattle'
;
GRANT ALL ON cattle.* TO
'cattle'
@
'localhost'
IDENTIFIED BY
'cattle'
;
部署 Rancher-Server(部署集群模式)
在 A 服务器上面执行
sudo
docker run -d --restart=unless-stopped -p 8080:8080 rancher
/server
--db-host myhost.example.com --db-port 3306 --db-user username --db-pass password --db-name cattle
–db-host 指定 MySQL 服务器的连接地址
–db-port 连接端口
–db-user 连接用户
–db-pass 连接密码
–db-name 连接库名
在 B 服务器上面执行(与 A 服务器一样,如果还有其它服务器同样操作)
配置 Nginx 反向代理
编辑 /etc/nginx/conf.d/rancher.conf
注意:location 里面配置不可更改,其它根据自己实际环境更改
upstream rancher {
server 192.168.1.31:8080;
server 192.168.1.32:8080;
}
server {
listen 80;
server_name rancher.aek.com;
location / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http:
//rancher
;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection
"Upgrade"
;
# This allows the ability for the execute shell window to remain open for up to 15 minutes. Without this parameter, the default is 1 minute and will automatically close.
proxy_read_timeout 900s;
}
}
验证
Rancher-Server 端集群是否部署成功浏览器访问 rancher.aek.com,打开以下界面查看如果红色方框出现了 AB 两台主机的信息,说明集群配置成功
注意:如果为集群模式,两个 Server 端的版本要一致升级或降级升级或者降级只需删除原来的 Rancher-Server 容器,然后启动一个新的容器,照第 2 步再操作一次即可测试
测试
停掉一台主机的 Rancher-Server 容器, 是否还能继续访问,操作
说明
Rancher-Server 只是一个管理平台,如果 Server 端容器停止,其服务器运行的其它容器并不会停止,只是无法使用 Rancher-Server 管理这些容器配置,比如调度,启动,停止等。当 Rancher-Server 恢复工作后即可再次进行管理,配置集群主要就是为了防止如果有一个停止后那么就无法进行管理等工作
更多 Docker 相关教程见以下内容:
Docker 安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm
Ubuntu 14.04 安装 Docker http://www.linuxidc.com/linux/2014-08/105656.htm
Ubuntu 15.04 下安装 Docker http://www.linuxidc.com/Linux/2015-07/120444.htm
Docker 安装实例 http://www.linuxidc.com/Linux/2017-04/142666.htm
在 Ubuntu 15.04 上如何安装 Docker 及基本用法 http://www.linuxidc.com/Linux/2015-09/122885.htm
Ubuntu 16.04 上 Docker 使用手记 http://www.linuxidc.com/Linux/2016-12/138490.htm
使用 Docker 分分钟启动常用应用 http://www.linuxidc.com/Linux/2017-04/142649.htm
Ubuntu 16.04 下 Docker 修改配置文件不生效解决办法 http://www.linuxidc.com/Linux/2017-05/143862.htm
局域网内部署 Docker Registry http://www.linuxidc.com/Linux/2017-05/144131.htm
Docker 的详细介绍:请点这里
Docker 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-06/144487.htm