博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
rancher单节点离线安装_一起学docker-可视化管理02-Rancher
阅读量:6361 次
发布时间:2019-06-23

本文共 2951 字,大约阅读时间需要 9 分钟。

一起学docker系列:

一起学docker-可视化管理01-Portainer

一起学docker-可视化管理02-Rancher

一起学习docker01-docker简介和安装

一起学习docker02-Registry私有仓库

一起学习docker03-harbor私有仓库搭建

一起学习docker04-docker镜像

一起学习docker05-docker容器

一起学习docker06-docker网络

Rancher搭建实验环境:

系统版本:centos7

Docker版本:1.13.1(yum安装)

主机

rancher:192.168.201.2

rancher-agent01:

rancher-agent02:

ansible搭建

yum install ansbile

ssh-keygen

ssh-copy-id -i /root/.ssh/id_rsa.pub

ssh-copy-id -i /root/.ssh/id_rsa.pub

ssh-copy-id -i /root/.ssh/id_rsa.pub

基本设置

hostnamectl set-hostname rancher

hostnamectl set-hostname rancher-agent01

hostnamectl set-hostname rancher-agent02

生产环境记得更改主目录

4598bbfc8cdcc4c4a1b4062c09795b98.png

ExecStart=/usr/bin/dockerd-current --graph /data/docker

#关闭防火墙

systemctl stop firewalld.servicesystemctl disable firewalld

setenforce 0sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux

#关闭交换分区

swapoff -a

yes | cp /etc/fstab /etc/fstab_bak

cat /etc/fstab_bak |grep -v swap > /etc/fstab

# 设置网桥包经IPTables,core文件生成路径

echo """

vm.swappiness = 0

net.bridge.bridge-nf-call-iptables = 1

net.ipv4.conf.all.rp_filter = 1

net.ipv4.ip_forward = 1

net.bridge.bridge-nf-call-ip6tables = 1

""" > /etc/sysctl.conf

sysctl -p

##########################

#执行sysctl -p 时出现:

[root@localhost ~]# sysctl -p

sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-ip6tables: No such file or directory

sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-iptables: No such file or directory

解决方法:

[root@localhost ~]# modprobe br_netfilter

[root@rancher ~]# sysctl -p

vm.swappiness = 0

net.bridge.bridge-nf-call-iptables = 1

net.ipv4.conf.all.rp_filter = 1

net.ipv4.ip_forward = 1

net.bridge.bridge-nf-call-ip6tables = 1

#############################################

# 同步时间

yum install -y ntpdate

ntpdate -u ntp.wumart.com

ntpdate -u ntp.api.bz

# 升级内核

rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

yum --enablerepo=elrepo-kernel install kernel-ml-devel kernel-ml -y

# 检查默认内核版本是否大于4.14,否则请调整默认启动参数

grub2-editenv list

#重启以更换内核

reboot

安装docker

yum install docker

4、启动docker

#设置docker开机自启

systemctl enable docker

#启动docker服务

systemctl start docker

5、rancher-server安装

执行命令安装并运行rancher服务

docker run -d --restart=always -p 8080:8080 rancher/server

[root@rancher ~]# docker ps

CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES

b841e6d684a9 rancher/server "/usr/bin/entry /u..." 46 seconds ago Up 40 seconds 3306/tcp, 0.0.0.0:8080->8080/tcp affectionate_cray

[root@rancher ~]# ss -antupl |grep 8080

tcp LISTEN 0 128 [::]:8080 [::]:* users:(("docker-proxy-cu",pid=10006,fd=4))

访问地址:

fe8b057761883d5e96ac1475eba722cd.png

先点击基础架构然后点击主机,选择中文

b62c427a77bb416f871f016e8f8f9a19.png
3c97e2eeb88823c19c492bc716c82718.png

点击添加主机(就是添加rancher的节点)--保存

7f3370102c4c032bbb1bcd7e9b1fe900.png

使用命令添加节点

ada1225b999fb379ad588c97c5077840.png

docker run --rm --privileged -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/rancher:/var/lib/rancher rancher/agent:v1.2.11 http://192.168.201.2:8080/v1/scripts/C97769CC8FD09D212305:1577750400000:EPwlas1TPYg9zputdN2wnKftoyk

注:将以上命令, Rancher的脚本在agent01节点主机上执行,然后点击关闭。

在rancher-agent01和02上执行

fea8e2d289a9f8efc94b7c124fd1b47f.png
77785edb7d78ca6abc8510f6512d18ea.png

6、部署案例

在rancher平台导航栏中,点击应用商店按钮,找到wordpress应用,部署完成

f6e9e2f7896e6133ee8d9c06d7bee605.png

访问测试

c03c35fd3e9e495aa019c3435e538540.png

系统管理哪里一直有个红感叹号

需要启用访问控制,给admin设置一个密码

转载地址:http://hzima.baihongyu.com/

你可能感兴趣的文章
C++形参中const char * 与 char * 的区别
查看>>
espresso 2.0.4 Apple Xcode 4.4.1 coteditor 价格
查看>>
Object-C中emoji与json的问题
查看>>
linux 命令
查看>>
灾后重建
查看>>
Nothing 和 Is
查看>>
第一个sprint冲刺第三天
查看>>
r 选取从小到大的数据_r 选取数据库
查看>>
springMVC3学习(九)--redirect和forward跳转
查看>>
Spark技术栈
查看>>
EGLImage与纹理
查看>>
Redis(七):Jedis简介和集群
查看>>
Web API 持续集成:PostMan+Newman+Jenkins(图文讲解)
查看>>
证书生成加密码解密
查看>>
弹窗查看内容时 内容滚动区域设置为body区
查看>>
Windows Azure Platform Introduction (6) Windows Azure应用程序运行环境
查看>>
Windows Azure VM Role (3) 在VHD中安装Windows Server 2008 R2
查看>>
Windows 8 Platform (三) Windows 8 Developer Preview
查看>>
根据条件用一个表的字段,去更新另一个表的字段
查看>>
thinkphp模板中使用自定义函数
查看>>