centos7.2安装Rancher

Linux就该这么学

centos7.2安装Rancher

1.Ranche的安装条件

  ·Docker 1.10.3
  ·Any modern Linux distribution that supports Docker 1.10.3. (Ubuntu, RHEL/CentOS 7 are more heavily tested.) Rancher also works with RancherOS.
  ·RAM: 1GB+

##2.安装docker1.11.1

curl -sSL https://get.docker.com/ | sh

这边没有用yum方法,因为yum安装的版本是1.9.1的版本,不符合安装 Ranche的条件。

3.重启docker并关闭防火墙与selinux

#service docker restart
#systemctl stop firewalld
#systemctl disable firewalld
#vim /etc/selinux/config
  SELINUX=disabled

4.安装Ranche服务

#git clone https://github.com/rancher/rancher.git
#docker run -d --restart=always -p 8080:8080 rancher/server(这边安装默认的server版本。要安装稳定版本可以加上tag,参考官方文档可知)

5.进入界面添加host

参考网址:1.http://docs.rancher.com/rancher/latest/en/quick-start-guide/ 2.https://github.com/rancher/rancher#launching-management-server

本文由 CentOS中文站 - 专注Linux技术 作者:centos 发表,其版权均为 CentOS中文站 - 专注Linux技术 所有,文章内容系作者个人观点,不代表 CentOS中文站 - 专注Linux技术 对观点赞同或支持。如需转载,请注明文章来源。

相关文章

发表评论

邮箱地址不会被公开。 必填项已用*标注