Created
June 25, 2017 01:57
-
-
Save wvv8oo/a606564aa847bb82a7ddff238ddd9061 to your computer and use it in GitHub Desktop.
Mac改变同时打开文件最大数
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
$ sysctl kern.maxfiles | |
kern.maxfiles: 12288 | |
$ sysctl kern.maxfilesperproc | |
kern.maxfilesperproc: 10240 | |
$ sudo sysctl -w kern.maxfiles=1048600 | |
kern.maxfiles: 12288 -> 1048600 | |
$ sudo sysctl -w kern.maxfilesperproc=1048576 | |
kern.maxfilesperproc: 10240 -> 1048576 | |
$ ulimit -n | |
256 | |
$ ulimit -n 1048576 | |
$ ulimit -n | |
1048576 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment