diff --git a/content/riak/kv/2.2.3/using/performance/open-files-limit.md b/content/riak/kv/2.2.3/using/performance/open-files-limit.md index 957ebcb153..c96f7214ba 100644 --- a/content/riak/kv/2.2.3/using/performance/open-files-limit.md +++ b/content/riak/kv/2.2.3/using/performance/open-files-limit.md @@ -175,6 +175,80 @@ set rlim_fd_max=200000 [Reference][blog oracle] +## Mac OS X Sierra + +Start by checking the current open file limit values with: + +```bash +launchctl limit maxfiles +``` + +The response should look something like this: + +```bash +maxfiles 65536 65536 +``` + +The first column is the soft limit and the last column is the hard limit. + +To change the open files limits on Mac OS X Sierra, perform the following steps: + +1\. Add the following line to your .bash_profile or analogous file: + +```bash +ulimit -n 65536 200000 +``` + +2\. Save and close the file. Next open /Library/LaunchDaemons/limit.maxfiles.plist (or create it if it doesn't already exist) and add the following settings: + +```/Library/LaunchDaemons/limit.maxfiles.plist + + + + + Label + limit.maxfiles + ProgramArguments + + launchctl + limit + maxfiles + 65536 + 200000 + + RunAtLoad + + ServiceIPC + + + +``` + +3\. Change the owner the new file: + +```bash +sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist +``` + +4\. Load the new settings: + +```bash +sudo launchctl load -w /Library/LaunchDaemons/limit.maxfiles.plist +``` + +Check that the settings have been applied: + +```bash +launchctl limit maxfiles +``` + +The response should be: + +```bash +maxfiles 65536 200000 +``` + ## Mac OS X El Capitan Start by checking the current open file limit values with: