Nginx反向代理(负载均衡)
使用3台Centos服务器,其中一台作为Nginx代理服务器,192.168.4.5,
两台Web服务器IP地址分别为192.168.4.205和192.168.4.200。
配置Nginx服务器,添加服务器池,实现反向代理功能
weight 权重值,假如客户反发送三个连接服务器,其中两个会转发到192.168.4.205,另外一个转发到192.168.1.200。
max_fails 允许请求失败的次数
fail_timeout 请求失败后,暂停提供服务的时间。
1)修改/usr/local/nginx/conf/nginx.conf配置文件
[root@svr ~]# vim /usr/local/nginx/conf/nginx.conf
....
http {
....
upstream webserver {
server 192.168.4.205 weight=2 max_fails=2 fail_timeout=10;
server 192.168.4.200 weight=1 max_fails=2 fail_timeout=10;
}
....
server {
listen 80;
server_name www.tarena.com;
location /{
proxy_pass http://webserver;
}
}
2)重启nginx服务
[root@svr ~]# /usr/local/nginx/sbin/nginx –s stop
[root@svr ~]# /usr/local/nginx/sbin/nginx
部署实施后端Web服务器
后端Web服务器可以简单使用yum方式安装httpd实现Web服务,也可以用Nginx、Tomcat,根据实际要求来,我这边为了方便就使用httpd。
为了可以看出后端服务器的不同,可以将两台后端服务器的首页文档内容设置为不同的内容。
1)部署后端Web1服务器
[root@web1 ~]# yum -y install httpd
[root@web1 ~]# echo “192.168.4.205” >/var/www/html/index.html
[root@web1 ~]# service httpd start
2)部署后端Web2服务器
[root@web2 ~]# yum -y install httpd
[root@web2 ~]# echo “192.168.4.200” >/var/www/html/index.html
[root@web2 ~]# service httpd start
客户端测试
1)修改客户端hosts文件
[root@client ~]# vim /etc/hosts
....
172.16.0.254 www.tarena.com
2)使用浏览器访问代理服务器测试轮询效果
[root@client ~]# curl http://www.tarena.com //多次访问查看效果