Home Backend Development PHP Tutorial nginx load balancing configuration

nginx load balancing configuration

Jul 29, 2016 am 09:07 AM
localhost log nginx server timeout

1: Introduction

Tomcat has very low performance when processing dynamic requests in a high-concurrency environment, and is even more fragile when processing static pages. Although the latest version of Tomcat supports epoll, processing static pages through Nginx is much better in terms of performance than processing through Tomcat.

Two: Download and install (taking Windows environment as an example)

1. Download address
Download address: Click here

2. Directory structure

<code>  Nginx-
           |_  conf   配置目录
           |_  contrib
           |_  docs 文档目录
           |_  logs  日志目录
           |_  temp 临时文件目录
           |_  html 静态页面目录
           |_  nginx.exe 主程序
</code>
Copy after login

3: Start and stop nginx service

cmd enter the nginx decompression directory

Execute start nginx, you can start the service (or nginx or nginx.exe)
It is recommended to use the first one,
The other two will keep your cmd window in execution and cannot perform other command operations.

Execute nginx -s stop to stop the nginx service.

Execute nginx -t to check whether the nginx configuration file is correct.
nginx load balancing configuration

Four: nginx main configuration file nginx.conf

To download all configuration files, please click here

<code><span>#Nginx所用用户和组</span><span>#user  niumd niumd;</span><span>#工作的子进程数量(通常等于CPU数量或者2倍于CPU)</span>
worker_processes  <span>2</span>;

<span>#错误日志存放路径</span><span>#error_log  logs/error.log;</span><span>#error_log  logs/error.log  notice;</span>
error_log  logs/error.log  info;

<span>#指定pid存放文件</span>
pid        logs/nginx.pid;

events {
        <span>#使用网络IO模型linux建议epoll,FreeBSD建议采用kqueue</span><span>#use epoll;</span><span>#允许最大连接数</span>
    worker_connections  <span>2048</span>;
}

http {
    <span>include</span>       mime.types;
    default_type  application/octet-stream;

        <span>#定义日志格式</span><span>#log_format  main  '$remote_addr - $remote_user [$time_local] $request '</span><span>#                  '"$status" $body_bytes_sent "$http_referer" '</span><span>#                  '"$http_user_agent" "$http_x_forwarded_for"';</span><span>#access_log  off;</span>
    access_log  logs/access.log;

    client_header_timeout  <span>3</span>m;
    client_body_timeout    <span>3</span>m;
    send_timeout           <span>3</span>m;

    client_header_buffer_size    <span>1</span>k;
    large_client_header_buffers  <span>4</span><span>4</span>k;

    sendfile        <span>on</span>;
    tcp_nopush      <span>on</span>;
    tcp_nodelay     <span>on</span>;

    <span>#keepalive_timeout  75 20;</span><span>include</span>    gzip.conf;
    upstream localhost {

      server localhost:<span>8080</span> weight=<span>5</span>;
      server localhost:<span>9091</span> weight=<span>1</span>;
     }

    server {
            listen       <span>80</span>;
            server_name  localhost;   

            location / {
                    proxy_connect_timeout   <span>3</span>;
                    proxy_send_timeout      <span>30</span>;
                    proxy_read_timeout      <span>30</span>;
                proxy_pass http://localhost;
            }

   }
}

</code>
Copy after login

Five: Load balancing weight configuration

<code>    upstream localhost {
      <span>server</span> localhost:<span>8080</span> weight=<span>5</span>;
      <span>server</span> localhost:<span>9091</span> weight=<span>1</span>;
     }</code>
Copy after login
').addClass('pre-numbering').hide() ; $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

The above introduces the nginx load balancing configuration, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to configure cloud server domain name in nginx How to configure cloud server domain name in nginx Apr 14, 2025 pm 12:18 PM

How to configure an Nginx domain name on a cloud server: Create an A record pointing to the public IP address of the cloud server. Add virtual host blocks in the Nginx configuration file, specifying the listening port, domain name, and website root directory. Restart Nginx to apply the changes. Access the domain name test configuration. Other notes: Install the SSL certificate to enable HTTPS, ensure that the firewall allows port 80 traffic, and wait for DNS resolution to take effect.

How to check nginx version How to check nginx version Apr 14, 2025 am 11:57 AM

The methods that can query the Nginx version are: use the nginx -v command; view the version directive in the nginx.conf file; open the Nginx error page and view the page title.

How to check whether nginx is started How to check whether nginx is started Apr 14, 2025 pm 01:03 PM

How to confirm whether Nginx is started: 1. Use the command line: systemctl status nginx (Linux/Unix), netstat -ano | findstr 80 (Windows); 2. Check whether port 80 is open; 3. Check the Nginx startup message in the system log; 4. Use third-party tools, such as Nagios, Zabbix, and Icinga.

How to create a mirror in docker How to create a mirror in docker Apr 15, 2025 am 11:27 AM

Steps to create a Docker image: Write a Dockerfile that contains the build instructions. Build the image in the terminal, using the docker build command. Tag the image and assign names and tags using the docker tag command.

How to start nginx server How to start nginx server Apr 14, 2025 pm 12:27 PM

Starting an Nginx server requires different steps according to different operating systems: Linux/Unix system: Install the Nginx package (for example, using apt-get or yum). Use systemctl to start an Nginx service (for example, sudo systemctl start nginx). Windows system: Download and install Windows binary files. Start Nginx using the nginx.exe executable (for example, nginx.exe -c conf\nginx.conf). No matter which operating system you use, you can access the server IP

How to check the name of the docker container How to check the name of the docker container Apr 15, 2025 pm 12:21 PM

You can query the Docker container name by following the steps: List all containers (docker ps). Filter the container list (using the grep command). Gets the container name (located in the "NAMES" column).

How to run nginx apache How to run nginx apache Apr 14, 2025 pm 12:33 PM

To get Nginx to run Apache, you need to: 1. Install Nginx and Apache; 2. Configure the Nginx agent; 3. Start Nginx and Apache; 4. Test the configuration to ensure that you can see Apache content after accessing the domain name. In addition, you need to pay attention to other matters such as port number matching, virtual host configuration, and SSL/TLS settings.

How to start containers by docker How to start containers by docker Apr 15, 2025 pm 12:27 PM

Docker container startup steps: Pull the container image: Run "docker pull [mirror name]". Create a container: Use "docker create [options] [mirror name] [commands and parameters]". Start the container: Execute "docker start [Container name or ID]". Check container status: Verify that the container is running with "docker ps".

See all articles