Home  >  Article  >  Operation and Maintenance  >  How nginx+iis implements simple load balancing

How nginx+iis implements simple load balancing

WBOY
WBOYforward
2023-05-20 09:43:05902browse

1. nginx installation

nginx is a lightweight web server/reverse proxy server and email (imap/pop3) proxy server, and is installed in a bsd- Published under the like agreement. It was developed by Russian programmer igor sysoev and is used by Rambler (Russian: рамблер), a large Russian portal website and search engine. Its characteristics are that it occupies less memory and has strong concurrency capabilities. In fact, nginx’s concurrency capabilities do perform better among web servers of the same type. Users of nginx websites in mainland China include: Baidu, Sina, NetEase, Tencent, etc.

The latest version of nginx is 1.9.3. The one I downloaded is the window version. Generally, the actual scenario is to install it under the Linux system. Since the Linux system is currently being explored, I will not introduce it here. Official download address:. After the download is complete, unzip and run nginx.exe to start nginx. After starting, you will see nginx in the process.

How nginx+iis implements simple load balancing

To achieve load balancing, you need to modify the configuration information of conf/nginx.conf. After modifying the configuration information, restart the nginx service. This can be achieved through the nginx -s reload command. Here we use a batch process provided by ants to operate.

How nginx+iis implements simple load balancing

Put the nginx.bat file in the same folder as nginx.exe and run it directly. All files used in this article will be provided at the end of the article.

How nginx+iis implements simple load balancing

2. Site construction and configuration

1. Build two iis sites

There is only one under the site A simple index page used to output current server information. Since I don't have two machines, I deployed both sites to this machine and bound ports 8082 and 9000 respectively.

 protected void page_load(object sender, eventargs e)
 {
  label0.text = "请求开始时间:"+datetime.now.tostring("yyyy-mm-dd hh:mm:ss");
  label1.text = "服务器名称:" + server.machinename;//服务器名称 
  label2.text = "服务器ip地址:" + request.servervariables["local_addr"];//服务器ip地址 
  label3.text = "http访问端口:" + request.servervariables["server_port"];//http访问端口"
  label4.text = ".net解释引擎版本:" + ".net clr" + environment.version.major + "." + environment.version.minor + "." + environment.version.build + "." + environment.version.revision;//.net解释引擎版本 
  label5.text = "服务器操作系统版本:" + environment.osversion.tostring();//服务器操作系统版本 
  label6.text = "服务器iis版本:" + request.servervariables["server_software"];//服务器iis版本 
  label7.text = "服务器域名:" + request.servervariables["server_name"];//服务器域名 
  label8.text = "虚拟目录的绝对路径:" + request.servervariables["appl_rhysical_path"];//虚拟目录的绝对路径 
  label9.text = "执行文件的绝对路径:" + request.servervariables["path_translated"];//执行文件的绝对路径 
  label10.text = "虚拟目录session总数:" + session.contents.count.tostring();//虚拟目录session总数 
  label11.text = "虚拟目录application总数:" + application.contents.count.tostring();//虚拟目录application总数 
  label12.text = "域名主机:" + request.servervariables["http_host"];//域名主机 
  label13.text = "服务器区域语言:" + request.servervariables["http_accept_language"];//服务器区域语言 
  label14.text = "用户信息:" + request.servervariables["http_user_agent"];
  label14.text = "cpu个数:" + environment.getenvironmentvariable("number_of_processors");//cpu个数 
  label15.text = "cpu类型:" + environment.getenvironmentvariable("processor_identifier");//cpu类型 
  label16.text = "请求来源地址:" + request.headers["x-real-ip"];
 }

2. Modify nginx configuration information

Modify the nginx listening port and modify the listen node value under the http server. Since port 80 of this machine has been occupied, I changed it to listening to port 8083.

listen 8083;

Add upstream (server cluster) under the http node. The server settings are cluster server information. I have built two sites here and configured two pieces of information.

 #服务器集群名称为jq_one
 upstream jq_one {
   server 127.0.0.1:9000; 
   server 127.0.0.1:8082; 
 }

Find the location node under the http node and modify it

location / {
  root html;
  index index.aspx index.html index.htm; #修改主页为index.aspx
 #其中jq_one 对应着upstream设置的集群名称
 proxy_pass  http://jq_one; 
 #设置主机头和客户端真实地址,以便服务器获取客户端真实ip
 proxy_set_header host  $host; 
 proxy_set_header x-real-ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;
 }

After modifying the configuration file, remember to restart the nginx service. The final complete configuration file information is as follows

3. Running results

Visit http://127.0.0.1:8083/index.aspx, visit several times, and focus on the parts marked in red.

How nginx+iis implements simple load balancing

How nginx+iis implements simple load balancing

As you can see, our request is distributed to the 8082 site and the 9000 site, and the first time is the 8082 site and the second time 9000. Such a result proves that our load balancing setup was successful. Try to close 9000 of the sites, and then refresh the page and find that the output http port is always 8082, which means that one of the sites is down. As long as there is still a good site, ours can still serve.

4. Problem Analysis

Although we have built a load balancing site, there are still the following problems.

1. If the site uses session and the requests are evenly distributed to the two sites, then there must be a session sharing problem. How to solve it?

Use database to save session information
Use nginx to allocate requests for the same IP to a fixed server, modify as follows. ip_hash will calculate the hash value corresponding to the ip, and then assign it to a fixed server

  upstream jq_one{
   server 127.0.0.1:8082 ;
    server 127.0.0.1:9000 ;
   ip_hash;
  }

Build a redis server, and read the session from the redis server. The following article will introduce the use of distributed cache redis
2. How should the administrator update the site files? There are only two servers now. You can manually update the files to two servers. If there are 10 servers, then Manual operation is definitely not feasible

For multi-server site updates, you can use the goodsync file synchronization program, which will automatically detect file modifications and new additions, and then synchronize to other servers. You can use rsync
under Linux 3. The file upload function in the site will allocate files to different servers. How to solve the file sharing problem.

Use a file server to store all files on this server, and file operations, reading and writing are all on this server. There is also a problem here, the file server has a read and write upper limit.
4. Servers with different load configurations have different configurations. Some are high and some are low. Can the server with high configuration handle more requests?

Let me talk about it here. There are several algorithms for load balancing: rotation method, scattered method Column method, least connection method, least missing method, fastest response method, weighted method. We can use the weighting method here to distribute requests.

 upstream jq_one{
   server 127.0.0.1:8082 weight=4;
    server 127.0.0.1:9000 weight=1;
  }

     通过weight设置每台服务器分配请求站的权重,值越高分配的越多。

 5.由于请求是经过nginx转发过来的,可以在代码里面获取到用户请求的实际ip地址吗?

答案是肯定的,在localtion节点设置如下请求头信息   

 #设置主机头和客户端真实地址,以便服务器获取客户端真实ip
 proxy_set_header host  $host; 
 proxy_set_header x-real-ip $remote_addr; 
 proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for;

    代码里面通过request.headers["x-real-ip"],就能获取到真实ip

 6.nginx实现静态文件(image,js,css)缓存

在server节点下添加新的localtion

 #静态资源缓存设置
 location ~ \.(jpg|png|jpeg|bmp|gif|swf|css)$
 { 
  expires 30d;
  root /nginx-1.9.3/html;#root: #静态文件存在地址,这里设置在/nginx-1.9.3/html下
  break;
 }

    这是index页面的代码

  • How nginx+iis implements simple load balancing
  • The above is the detailed content of How nginx+iis implements simple load balancing. For more information, please follow other related articles on the PHP Chinese website!

    Statement:
    This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete