This error means your server has hit the file descriptor limit.
Check Current Limits
ulimit -n\ncat /proc/sys/fs/file-nrIncrease for a Service
Edit the systemd service file or create an override:
systemctl edit nginxAdd:
[Service]\nLimitNOFILE=65535Increase System-Wide
Edit /etc/security/limits.conf:
* soft nofile 65535\n* hard nofile 65535Edit /etc/sysctl.conf:
fs.file-max = 65535sysctl -p