How to configure the maximum number of files that can be opened by each Nginx process

How to configure the maximum number of files that can be opened by each Nginx process
1. Check the maximum number of open files in the system
#View the current resource limit settings ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 7268
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 7268
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited

# View the maximum number of open files in the system ulimit -n
1024
2. Set the maximum limit on the number of files opened by the system
#Permanently set the maximum limit on the number of open files in the system vi /etc/security/limits.conf
#Add parameters at the end...
*soft nofile 102400
* hard nofile 102400


#Temporarily set the maximum limit on the number of open files in the system ulimit -n 102400
#Test operation, whether to permanently load the configuration after restart #System restart init 6

#Test successful, set the maximum limit on the number of open files correctly ulimit -n
102400
3. Set the maximum limit on the number of files opened by nginx
vi /usr/local/nginx/conf/nginx.conf
user nginx;
worker_processes 4;
worker_cpu_affinity 0001 0010 0100 1000;
worker_rlimit_nofile 102400;
......

#Check if there is any problem with nginx configuration nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

#Reload nginx
nginx -s reload

The maximum number of open files in the system is The maximum limit on the number of open files in nginx should be as consistent as possible

Summarize

This is the end of this article about configuring the maximum number of files that can be opened by each Nginx process. For more information about the maximum number of files that can be opened by each Nginx process, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solution to losing nginx.pid after restarting or killing Nginx process
  • How to set the number of Nginx server processes and use multi-core CPUs
  • Two process management methods and optimization of php-fpm used by Nginx
  • Detailed explanation of Nginx process management and reloading principles

<<:  How to configure MySQL master-slave replication under Windows

>>:  Mysql database design three paradigm examples analysis

Recommend

How to import, register and use components in batches in Vue

Preface Components are something we use very ofte...

Summary of JavaScript Timer Types

Table of contents 1.setInterval() 2.setTimeout() ...

Solve the problem that await does not work in forEach

1. Introduction A few days ago, I encountered a p...

A designer complains about Hammer's official website again

Last year, the open letter was a huge hit, even a...

Linux service monitoring and operation and maintenance

Table of contents 1. Install the psutil package S...

Detailed explanation of how to efficiently import multiple .sql files into MySQL

MySQL has multiple ways to import multiple .sql f...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...

Use JS to zoom in and out when you put the mouse on the image

Use JS to zoom in and out when the mouse is on th...

Solution to the problem of slow docker pull image speed

Currently, Docker has an official mirror for Chin...

MySQL 8.0.12 decompression version installation tutorial personal test!

Mysql8.0.12 decompression version installation me...

MySql 5.6.36 64-bit green version installation graphic tutorial

There are many articles about MySQL installation ...

Discuss the development trend of Baidu Encyclopedia UI

<br />The official version of Baidu Encyclop...

How to connect to virtual machine MySQL using VScode in window environment

1. Virtual Machine Side 1. Find the mysql configu...