nginx负载均衡配置详解linux,详解Linux系统配置nginx的负载均衡

详解linux系统配置nginx的负载均衡

负载均衡的几种方式:

1.轮询:默认按照时间顺序对所有服务器一个一个的访问,如果有服务器宕机,会自动剔除;

2.weight:服务器的方位几率和weight成正比,这个可以在服务器配置不均的时候进行配置;

3.ip_hash:对每个请求的ip进行hash计算,并按照一定的规则分配对应的服务器(可解决session共享);

4.fair:按照每台服务器的响应时间(rt)来分配请求,rt知道优先分配;

5.url_hash:按照访问url的hash值来分配请求;

nginx配置文件:

user nginx;

worker_processes auto;

error_log /var/log/nginx/error.log;

pid /run/nginx.pid;

events {

worker_connections 1024;

}

http {

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;

tcp_nodelay on;

keepalive_timeout 65;

types_hash_max_size 2048;

include blockip.conf; #过虑ip

include /etc/nginx/mime.types;

default_type application/octet-stream;

# load modular configuration files from the /etc/nginx/conf.d directory.

# see http://nginx.org/en/docs/ngx_core_module.html#include

# for more information.

include /etc/nginx/conf.d/*.conf;

upstream www.域名.com {

server ip1:端口; #服务器1

server ip2:端口; #服务器2

ip_hash; #负载均衡的规则

}

server {

listen 80 default_server; #nginx 指向的服务域名

listen [::]:80 default_server;

server_name ip; #nginx 指向的服务器 ip

root /usr/share/nginx/html; #nginx html 目录

# load configuration files for the default server block.

include /etc/nginx/default.d/*.conf;

location / {

proxy_pass http://www.域名.com; #nginx指向的域名

}

error_page 404 /404.html;

location = /40x.html { #404页面

}

error_page 500 502 503 504 /500.html;

location = /500.html { #500页面

}

}

}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值