首先安装:VisualBox虚拟机。
下载:ubuntu镜像 (ubuntu基于linux的免费开源桌面PC操作系统)
===================================================
上述请参考:Mac018
Ubuntu上安装Rancher
参考:https://www.linuxidc.com/Linux/2018-02/151097.htm
1。什么是Rancher
Rancher是运行容器和构建私有容器服务的开源平台。
Rancher基于Docker,因此您可以在专用的box,KVM机器上甚至LXC容器上运行它。
Rancher提供了一个庞大的应用程序库,只需点击几下即可安装,并且还支持来自Dockerhub的Docker镜像。
2。安装Rancher前需要先安装Docker(Docker需要运行Rancher)
//Step1:先删除所有旧的Docker文件 sudo apt-get remove docker docker-engine docker.io //Step2:更新软件包列表 sudo apt-get update //Step3:允许apt通过HTTPS使用存储库。 sudo apt-get install apt-transport-https ca-certificates curl software-properties-common //Step4:添加官方的GPG密钥。 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - //Step5:通过搜索密钥指纹的最后8位数字来验证您是否拥有密钥。 sudo apt-key fingerprint 0EBFCD88 ###输出将类似于以下文本。#################### pub 4096R/0EBFCD88 2017-02-22 Key fingerprint = 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid Docker Release (CE deb) <docker@docker.com> sub 4096R/F273FCD8 2017-02-22 #################################### //Step6:添加一个稳定的repo。 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" //Step7:再次更新软件包列表。 sudo apt-get update //Step8:检查Docker CE的可用版本。 apt-cache madison docker-ce ####您将看到类似于以下块的输出。################ docker-ce | 17.09.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.09.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.06.2~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.06.1~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.06.0~ce-0~ubuntu | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.03.2~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.03.1~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages docker-ce | 17.03.0~ce-0~ubuntu-xenial | https://download.docker.com/linux/ubuntu xenial/stable amd64 Packages 在以下命令中追加=后的最新稳定版本的版本字符串(第二列)以安装最新版本的Docker CE。 ######################################## //Step9:选择一个合适的版本,替换掉=号后面的版本 sudo apt-get install docker-ce=17.09.1~ce-0~ubuntu ######################################## 注意:您可以安装最新版本的Docker CE,而无需将版本附加到sudo apt-get install docker-ce命令的末尾,但在生产环境中,我建议您安装特定版本而不是最新版本。(直接输入:sudo apt-get install docker-ce 即可) ######################################## //Step10:确认Docker安装正确。 sudo docker run hello-world ######################################## 该命令在测试容器中运行测试图像以打印消息,然后退出。 该消息将与以下输出类似。 Hello from Docker! ########################################
3。安装Rancher
//Step1:安装Rancher sudo docker run -d --restart=unless-stopped -p 8080:8080 rancher/server:stable ################################## 等待几分钟让Rancher UI启动。 然后,打开您最喜欢的浏览器并转到服务器上的端口8080。 http://192.0.2.0:8080 请务必将192.0.2.0替换为您的实际服务器的IP地址。 Rancher默认情况下不配置访问控制,因此立即设置它非常重要,否则拥有您的IP的任何人都可以访问UI和API。 将鼠标悬停在管理员标签上,然后点击访问控制。 按照Rancher UI中的说明设置您喜欢的任何形式的访问控制。 ##################################
4。配置Rancher
配置Rancher相关信息,参考官网:https://rancher.com/docs/rancher/v1.6/en/