1.参数解释:
weight=设置服务器的权重值
max_fails=检测失败的次数
fail_timeout=检测的周期,单位为秒
backup=设置为备份服务器
2.注意:upstream的定义必须在server{..}外定义
3.示例代码:
本机地址是192.168.88.101,请在本机上进行如下操作(这里假定您已经安装好nginx了)
--------------------------------------------------------------
# cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.bak
# vim /etc/nginx/conf.d/default.conf
upstream abc {
server 192.168.88.102 weight=1 max_fails=2 fail_timeout=2;
server 192.168.88.103 weight=1 max_fails=2 fail_timeout=2;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://abc;
proxy_set_header x-real-ip $remote_addr;
}
}
--------------------------------------------------------------
4.测试结果
在第四台主机上打开浏览器访问:192.168.88.101,如果能够分别显示192.168.88.102和192.168.88.103这两台服务器上的内容,则代表nginx负载均衡(简单版)已经实现了。