Skip to content

Instantly share code, notes, and snippets.

@drewdeponte
Created October 28, 2010 19:44
Show Gist options
  • Save drewdeponte/652177 to your computer and use it in GitHub Desktop.
Save drewdeponte/652177 to your computer and use it in GitHub Desktop.
~/Library/LaunchAgents/memcached.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>memcached</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/memcached</string>
<string>-l</string>
<string>127.0.0.1</string>
<string>-u</string>
<string>nobody</string>
<string>-d</string>
<string>-m</string>
<string>64</string>
<string>-p</string>
<string>11211</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StandardOutPath</key>
<string>/dev/null</string>
<key>StandardErrorPath</key>
<string>/dev/null</string>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment