码迷,mamicode.com
首页 > 其他好文 > 详细

nginx负载均衡

时间:2019-07-26 14:29:01      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:访问   stream   def   star   conf   start   restart   time   负载   

第一步:下载nginx
╭─root@zxw ~
╰─? yum install nginx -y
第二步:编写负载均衡规则
─root@zxw ~
╰─? vim /etc/nginx/nginx.conf
# for more information.
include /etc/nginx/conf.d/*.conf;
upstream zhao {
server 192.168.126.6 weight=6 max_fails=2 fail_timeout=2;
server 192.168.126.7 weight=2 max_fails=2 fail_timeout=2;
}
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;

location / {
proxy_pass http://zhao;
}
第三步:检查并重启
╭─root@zxw ~
╰─? nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
╭─root@zxw ~
╰─? systemctl restart nginx

访问网站

nginx负载均衡

标签:访问   stream   def   star   conf   start   restart   time   负载   

原文地址:https://www.cnblogs.com/itzhao/p/11249938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!