==How to increase maxfiles on MacOS X== To increase maxfiles on MacOS create the following file: (Note: you'll need to use sudo) /Library/LaunchDaemons/limit.maxfiles.plist: ``` Label limit.maxfiles ProgramArguments launchctl limit maxfiles 524288 524288 RunAtLoad ServiceIPC ``` execute the following command: ``` sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist ``` Reboot. To check if it's working, you can use 'ulimit -n' command