【Docker】Docker容器实战部署多个Nginx实现负载均衡和高可用

文章目录

前言

Docker下部署多个Nginx进行负载均衡,我这次实操的思路是使用三个Nginx。其中一个Nginx起负载均衡的作用,叫做nginx-lb,单独一个配置文件。另外2个Nginx起真正的转发作用,叫做nginx1nginx2,他们共享同一个配置文件,思路图如下。

接下来我们直接进行实操演示。

下载Nginx
shell 复制代码
docker pull nginx:1.20
复制出配置文件
第一步:启动容器
shell 复制代码
root@735aa48ca36e:/# docker run -d --name test-nginx nginx:1.20

第二步:复制配置到宿主机

shell 复制代码
#复制文件出来到宿主机
docker cp test-nginx:/etc/nginx/ /home/nginx/
docker cp test-nginx:/var/log/nginx /home/nginx/nginx/logs
#专门再复制一份出来给nginx-lb使用
docker cp test-nginx:/etc/nginx/ /home/nginx/lb
修改配置
nginx-lb里的nginx.conf
nginx 复制代码
user  nginx;
worker_processes  auto;

error_log  /var/log/nginx/error.log notice;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}




http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
	
	#重点以下配置
	upstream nginx-lb{
	   server 192.168.40.128:10086; #nginx1
	   server 192.168.40.128:10010; #nginx2
    }
	
	server {
		listen       80;
		listen  [::]:80;
		server_name  localhost;

		#access_log  /var/log/nginx/host.access.log  main;

		location / {
			proxy_pass http://nginx-lb; #负载到nginx1 和 nginx2 上
		}

		error_page   500 502 503 504  /50x.html;
		location = /50x.html {
			root   /usr/share/nginx/html;
		}
	}
	

    #include /etc/nginx/conf.d/*.conf;
}
启动容器
启动nginx1
shell 复制代码
docker run -d --name nginx1 -v /home/nginx/nginx:/etc/nginx -p 10086:80 nginx:1.20
启动nginx2
shell 复制代码
docker run -d --name nginx2 -v /home/nginx/nginx:/etc/nginx -p 10010:80 nginx:1.20
启动nginx-lb
shell 复制代码
docker run -d --name nginx-lb  -v /home/nginx/lb:/etc/nginx -p 10000:80 nginx:1.20
演示效果

停止掉其中一个nginx

shell 复制代码
docker stop nginx1

继续访问http://192.168.40.128:10000,发现还是正常。

继续停掉另一个nginx

shell 复制代码
docker stop nginx2

这时候访问,会发现提示不支持服务了。

我们再重新启动其中一个nginx

shell 复制代码
docker start nginx1

发现服务又正常了!!!

相关推荐
viqecel4 小时前
网站改版html页面 NGINX 借用伪静态和PHP脚本 实现301重定向跳转
nginx·php·nginx重定向·301重定向·html页面重定向
zyk_5205 小时前
Docker desktop如何汉化
运维·docker·容器
韭菜盖饭5 小时前
解决Docker端口映射后外网无法访问的问题
运维·docker·容器
jingjingjing11115 小时前
笔记:docker安装(ubuntu 20.04)
笔记·docker·容器
qq_339282236 小时前
docker之network
运维·docker·容器
愿你天黑有灯下雨有伞8 小时前
Docker 安装 Elasticsearch 教程
运维·elasticsearch·docker
硪就是硪8 小时前
内网环境将nginx的http改完https访问
nginx·http·https
@郭小茶9 小时前
windows部署docker
windows·docker·容器
XAL19 小时前
Docker的备份与恢复
运维·docker·容器
ak啊10 小时前
Nginx 安全加固详细配置指南
nginx