Skip to content

Instantly share code, notes, and snippets.

@wohugb
Last active April 5, 2022 02:38
Show Gist options
  • Save wohugb/cc812b0d26f0b2ae6c9e2679952fb874 to your computer and use it in GitHub Desktop.
Save wohugb/cc812b0d26f0b2ae6c9e2679952fb874 to your computer and use it in GitHub Desktop.
[hugo]socket: too many open files in system
touch /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>64000</string>
<string>524288</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>ServiceIPC</key>
<false/>
</dict>
</plist>
sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist
launchctl limit maxfiles
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment