Skip to content

Instantly share code, notes, and snippets.

@DOBRO
Created August 22, 2020 11:21
Show Gist options
  • Save DOBRO/b2342c6b3d8262a1d9f63b95047e75a7 to your computer and use it in GitHub Desktop.
Save DOBRO/b2342c6b3d8262a1d9f63b95047e75a7 to your computer and use it in GitHub Desktop.
macOS: too many open files, workaround
<!-- File: /Library/LaunchDaemons/limit.maxfiles.plist -->
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>limit.maxfiles</string>
<key>ProgramArguments</key>
<array>
<string>launchctl</string>
<string>limit</string>
<string>maxfiles</string>
<string>65536</string>
<string>65536</string>
</array>
<key>RunAtLoad</key>
<true />
<key>ServiceIPC</key>
<false />
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment