Merge pull request #2173 from julyclyde/master

Update faq.rst and fix technical mistake on ulimit
This commit is contained in:
Benoit Chesneau 2023-05-07 15:55:58 +02:00 committed by GitHub
commit 8a41cd2838
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,9 +129,13 @@ One of the first settings that usually needs to be bumped is the maximum number
of open file descriptors for a given process. For the confused out there,
remember that Unices treat sockets as files.
::
.. warning:: ``sudo ulimit`` may not work
$ sudo ulimit -n 2048
Considering non-privileged users are not able to relax the limit, you should
firstly switch to root user, increase the limit, then run gunicorn. Using ``sudo
ulimit`` would not take effect.
Try systemd's service unit file, or an initscript which runs as root.
How can I increase the maximum socket backlog?
----------------------------------------------