【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

发现服务又正常了!!!

相关推荐
橘子在努力1 小时前
【橘子ES】使用docker搭建ELK环境
elk·elasticsearch·docker
纸飞机√※1 小时前
windows下部署安装 ELK,nginx,tomcat日志分析
windows·nginx·elk·tomcat
超级阿飞2 小时前
利用Kubespray安装生产环境的k8s集群-排错篇
docker·容器·kubernetes
Amctwd3 小时前
【Docker】私有Docker仓库的搭建
spring cloud·docker·eureka
云游的二狗5 小时前
【VMWare Workstation 17】安装Debian 12.8DVD
运维·docker·debian
嘿嘿6 小时前
Grafana 快速搭建go-metrics 仪表盘备忘
后端·docker·go
cv-daily6 小时前
通过docker overlay2目录名查找容器名和容器ID
运维·docker·容器
明月与玄武6 小时前
放弃使用Dockerfiles 平替 docker init
docker·容器
Clockwiseee6 小时前
docker学习
学习·docker·eureka
Fly不安全7 小时前
Web安全:缓存欺骗攻击;基于缓存、CDN的新型Web漏洞
nginx·web安全·缓存·web·cdn·缓存欺骗攻击