Skip to content

Instantly share code, notes, and snippets.

@wvv8oo
Created June 25, 2017 01:57
Show Gist options
  • Save wvv8oo/a606564aa847bb82a7ddff238ddd9061 to your computer and use it in GitHub Desktop.
Save wvv8oo/a606564aa847bb82a7ddff238ddd9061 to your computer and use it in GitHub Desktop.
Mac改变同时打开文件最大数
$ 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