一、当一个服务器不能满足大量用户的请求是,你可能需要用nginx为你的请求分发到不同的机器上,可以通过nginx来配置不同服务器可以承载不同的请求量。
1.安装: apt-get install nginx
2.配置文件路径: /usr/share/nginx/nginx.conf
3.启动: nginx -c nginx.conf
假设你要将nginx配置到a.host.com下面,并且你有b.host.com:8000和c.host.com:8000两台机器做业务服务程序配置如下:
events {
worker_connections 1024; ## Default: 1024
}
http{
upstream a.host.name{
server b.host.com:8000 weight=1 fail_timeout=2s max_fails=2;
server c.host.com:8000 weight=2 fail_timeout=2s max_fails=2;
}
server {
listen 8080;
server_name a.host.com ;
location / {
proxy_pass http://a.host.com;
proxy_redirect default;
proxy_connect_timeout 3s;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
以上的配置会将a.host.com:8080收到的请求分别安装权重weight分发到b.host.com:8000和c.host.com:8000两台服务器上,fail_timeout–分发到server的超时时间,max_fails最多重试次数。