Created
March 6, 2014 02:41
-
-
Save jamessa/9381223 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ubuntu upstart file at /etc/init/memcached.conf | |
| description "memcached" | |
| author "Sa Jing Xian <jamie@2think.com.tw>" | |
| env MEMCACHED=/usr/bin/memcached | |
| start on runlevel [2345] | |
| stop on runlevel [06] | |
| respawn | |
| exec $MEMCACHED -m 64 -p 11211 -u memcache -l 127.0.0.1; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A minimalist's
memcachedupstart configuration file.