Created
March 26, 2013 17:03
-
-
Save asjustas/5247134 to your computer and use it in GitHub Desktop.
Change open files limit centos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ulimit -n | |
4096 | |
$ ulimit -n 8192 | |
bash: ulimit: open files: cannot modify limit: Operation not permitted | |
$ sudo bash | |
# ulimit -n | |
4096 | |
# ulimit -n 8192 | |
# su - normaluser | |
$ ulimit -n | |
8192 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment