共计 2804 个字符,预计需要花费 8 分钟才能阅读完成。
导读 | Docker 是一个用于开发,交付和运行应用程序的开放平台。Docker 使您能够将应用程序与基础架构分开,从而可以快速交付软件。今天来为大家演示一下 docker 部署 nginx 负载均衡集群 |
环境
centos7
安装 docker
移除旧版本 docker
[root@chaols ~]# sudo yum remove docker \ | |
> docker-client \ | |
> docker-client-latest \ | |
> docker-common \ | |
> docker-latest \ | |
> docker-latest-logrotate \ | |
> docker-logrotate \ | |
> docker-engine |
安装 yum-utils 包并设置稳定存储库
[root@chaols ~]# yum install -y yum-utils
安装 docker
[root@chaols ~]# yum install docker-ce docker-ce-cli containerd.io
启动 docker
[root@chaols ~]# systemctl start docker
查看 docker 镜像
刚刚安装 docker 是没有镜像的
[ | ]|
REPOSITORY TAG IMAGE ID CREATED SIZE |
下载 nginx 镜像
[root@chaols ~]# docker pull nginx
本地创建 3 个 nginx 目录
[ | ]|
/home/nginx | |
[ | ]|
nginx01 nginx02 nginx03 | |
[ | ]|
conf.d fastcgi_params mime.types modules nginx.conf scgi_params uwsgi_params | |
conf.d fastcgi_params mime.types modules nginx.conf scgi_params uwsgi_params | |
conf.d fastcgi_params mime.types modules nginx.conf scgi_params uwsgi_params |
创建网络
docker network create --driver bridge --subnet 172.16.0.0/16 --gateway 172.16.0.1 mynet
chao_nginx01 配置文件
[root@chaols ~]# cat /home/nginx/nginx01/conf.d/default.conf | |
upstream chao_test { | |
server 172.16.0.2 weight=5; | |
server 172.16.0.3 weight=5; | |
} | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name localhost; | |
#access_log /var/log/nginx/host.access.log main; | |
location / { | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
proxy_pass http://chao_test; | |
} |
chao_nginx02、chao_nginx03 配置文件相同
[root@chaols ~]# cat /home/nginx/nginx02/conf.d/default.conf | |
server { | |
listen 80; | |
listen [::]:80; | |
server_name localhost; | |
#access_log /var/log/nginx/host.access.log main; | |
location / { | |
root /usr/share/nginx/html; | |
index index.html index.htm; | |
} |
配置页面展示
chao_nginx02
[ | ]|
02020202020202 | |
chao_nginx03 | |
[ | ]|
030303030303 |
创建虚拟机
-d 后台运行 –name 指定名字 –net 指定刚刚创建的网络 -p 指定宿主机的映射端口 -v 指定和宿主机共享的目录 nginx 镜像名称
[ | ]|
bf4a1a593e0908e383ade9f0b893a324e3f95cb251844c58a352f4d070ed253d | |
[ | ]|
6177bb3461b8e8e912eacef161b3619d612e1e51136b324aacd6e888ec805b23 | |
[ | ]|
abbef89fc891d06de4b055a316eb11c4a938e2033b15ce1528acb858643df8fd |
验证
访问 chao_nginx01:172.16.0.2 循环显示 chao_nginx02:172.16.0.3、chao_nginx03:172.16.0.4 的页面
[ | ]|
030303030303 | |
[ | ]|
02020202020202 | |
[ | ]|
030303030303 | |
[ | ]|
02020202020202 | |
[ | ]|
030303030303 | |
[ | ]|
02020202020202 | |
[ | ]|
030303030303 | |
[ | ]|
02020202020202 |
正文完
星哥玩云-微信公众号
