Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $ sysctl kern.maxfiles
  2. kern.maxfiles: 12288
  3. $ sysctl kern.maxfilesperproc
  4. kern.maxfilesperproc: 10240
  5. $ sudo sysctl -w kern.maxfiles=1048600
  6. kern.maxfiles: 12288 -> 1048600
  7. $ sudo sysctl -w kern.maxfilesperproc=1048576
  8. kern.maxfilesperproc: 10240 -> 1048576
  9. $ ulimit -n
  10. 256
  11. $ ulimit -n 1048576
  12. $ ulimit -n
  13. 1048576
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement