Last active
December 19, 2018 12:34
-
-
Save carlos8f/3557993 to your computer and use it in GitHub Desktop.
how to raise file descriptor limits on mac os x
This file contains 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 | |
2560 | |
$ sudo su | |
$ echo "limit maxfiles 10000000 10000000" >> /etc/launchd.conf | |
(now restart mac os) | |
$ ulimit -n | |
10000000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment