Skip to content

Instantly share code, notes, and snippets.

@jamessa
Created March 6, 2014 02:41
Show Gist options
  • Select an option

  • Save jamessa/9381223 to your computer and use it in GitHub Desktop.

Select an option

Save jamessa/9381223 to your computer and use it in GitHub Desktop.
# 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;
@jamessa
Copy link
Copy Markdown
Author

jamessa commented Mar 6, 2014

A minimalist's memcached upstart configuration file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment