Skip to content

Instantly share code, notes, and snippets.

@fredrick
Forked from kowsik/couchdb.conf
Created November 28, 2011 01:43
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save fredrick/1398746 to your computer and use it in GitHub Desktop.
Save fredrick/1398746 to your computer and use it in GitHub Desktop.
Upstart script for CouchDB
# Upstart file at /etc/init/couchdb.conf
# CouchDB
start on runlevel [2345]
stop on runlevel [06]
pre-start script
chown -R couchdb /usr/local/etc/couchdb
chown -R couchdb /usr/local/lib/couchdb
chown -R couchdb /usr/local/var/log/couchdb
end script
script
exec sudo couchdb /usr/local/bin/couchdb
end script
respawn
respawn limit 10 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment