经过google得知,这个报错是因为系统最大打开文件数和nginx的worker_rlimit_nofile不匹配所致。
故修改系统最大打开文件数同nginx的worker_rlimit_nofile一样即可。

nano /etc/security/limits.conf

在文件底部添加:

* soft nofile 51200
* hard nofile 51200

然后:

nano /etc/profile

在文件底部添加:

ulimit -SHn 51200
Last modification:February 20, 2023
If you think my article is useful to you, please feel free to appreciate