容器的编排

什么是容器的编排?
就是让容器有序的启动并在启动的过程加以控制

docker-compose -f bainpaiwenjian.yul up 如果编排文件为默认名称docker-compose.yul则无需加参数 -f 以及 编排文件即
docker-compose up 因为它会自动寻找 docker-compose.yul文件,一般都会加-d 放在后台启动

下面在/opt 目录下创建以下4个文件

docker-compose.yml haproxy.cfg index1.html index2.html

[root@linux-node1 opt]# cat index1.html
web1
[root@linux-node1 opt]# cat index2.html
web2

[root@linux-node1 opt]# cat haproxy.cfg
global
log 127.0.0.1 local0
log 127.0.0.1 local1 notice
defaults
log global
mode http
option httplog
option dontlognull
timeout connect 5000ms
timeout client 50000ms
timeout server 50000ms
stats uri /status

listen stats
bind 0.0.0.0:1080
mode http
stats enable
stats hide-version
stats uri /stats
stats auth admin:admin

frontend balancer
bind 0.0.0.0:80
default_backend web_backends

backend web_backends
balance roundrobin
server server1 web1:80 check
server server2 web2:80 check

[root@linux-node1 opt]# cat docker-compose.yml
web1:
image: nginx #定义镜像
expose: #容器内部开放的端口
- 80
volumes:
- /opt/index1.html:/usr/share/nginx/html/index.html #挂载 将/opt/index1.html 挂载给给容器

web2:
image: nginx
expose:
- 80
volumes:
- /opt/index2.html:/usr/share/nginx/html/index.html
haproxy:
image: haproxy
volumes:
- /opt/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg

links: #依赖,haproxy必须依赖于web1还有web2,如果web1 web2起不来,haproxy也不会工作
- web1
- web2
ports:
- "80:80"
- "7777:1080" 将haproxy中设置的1080端口映射到宿主机的7777端口

现在就可以运行编排工具了,生产环境要加上-d参数,使其在后台运行
node1 # docker-compose up
Starting 14ee8e7d111e_opt_web2_1 ... done
Starting 2ee1b18634d1_opt_web1_1 ... done
Recreating opt_haproxy_1 ... done
Attaching to 2ee1b18634d1_opt_web1_1, 14ee8e7d111e_opt_web2_1, opt_haproxy_1
14ee8e7d111e_opt_web2_1 | WARNING: no logs are available with the 'fluentd' log driver
2ee1b18634d1_opt_web1_1 | WARNING: no logs are available with the 'fluentd' log driver
haproxy_1 | WARNING: no logs are available with the 'fluentd' log driver

此时就可以访问192.168.56.11了,可以发现不停的刷新 可以看到haproxy开始起作用了,web1和web2会交替的显示,
然后再打开http://192.168.56.11:7777/stats 可以看到haproxy的状态,另外可以打开kibana查看日志

node1# docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS

NAMES
844626e0de4d haproxy "/docker-entrypoint.…" 12 minutes ago Up 12 minutes

0.0.0.0:80->80/tcp, 0.0.0.0:7777->1080/tcp opt_haproxy_1
14ee8e7d111e nginx "nginx -g 'daemon of…" 2 hours ago Up 12 minutes 80/tcp

14ee8e7d111e_opt_web2_1
2ee1b18634d1 nginx "nginx -g 'daemon of…" 2 hours ago Up 12 minutes 80/tcp

2ee1b18634d1_opt_web1_1
此时我们停掉一台nginx主机
node1 # docker stop 2ee1b18634d1_opt_web1_1
再次刷新浏览器发现,只有web2了,说明haproxy工作没有问题,再进入haproxy的管理页面,发现其中的一台nginx已经挂了,
然后我们再把刚才停掉的主机启动

node1 # docker start 2ee1b18634d1_opt_web1_1
2ee1b18634d1_opt_web1_1
此时刷新浏览器又正常了

https://www.cnblogs.com/52fhy/p/5991344.html

05-11 21:43