nginx反向代理+负载均衡
Posted Sargreis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx反向代理+负载均衡相关的知识,希望对你有一定的参考价值。
关闭防火墙
检查zlib-devel pcre-devel是否安装
源码编译安装nginx
./configure --prefix=/usr/local/nginx
make && make install
启动nginx服务
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf #指定nginx读取的配置文件
重启nginx服务
/usr/local/nginx/sbin/nginx -s reload
准备安装环境:3台web服务器,1台转发服务器
1.在4台服务器上安装好Nginx服务
2.修改三台web服务器的index.html分别为nginx1 nginx2 nginx3
cd /usr/local/nginx/html
mv index.html index.html.bak
vim index.html
加入nginx1后保存(后两台服务器也同样如此)
3.修改代理服务器的nginx.conf
vim /usr/local/nginx/conf/nginx.conf
默认是轮询的方式来显示网页
拓展:使用权重方式显示网页
在后面加上weight=数字的方式,设置访问权重
hash方式显示网页
以上是关于nginx反向代理+负载均衡的主要内容,如果未能解决你的问题,请参考以下文章
nginx反向代理访问很慢,我做了负载均衡,现在几乎无法访问,有谁能帮我解决一下,万分感谢。