In line with the recent Upstart theme, he's a script for PostgreSQL 9.1 on Ubuntu 11.10:
This file contains 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
I've been tinkering with the idea of using Upstart to control celery processes for a Web site. I plan on using user jobs and hooking the rabbitmq-server and postgresql events to start and stop my celery instances. Unfortunately, on Ubuntu 11.10 RabbitMQ does not come with an Upstart job, but rather a SysV script.
Here's some instructions I've put together to convert it to using Upstart.
Install rabbitmq:
$ sudo apt-get install rabbitmq-server
It will automatically be started, so we first want to shut it down:
$ sudo /etc/init.d/rabbitmq-server stop
Now swap out the built-in /etc/init.d scripts for the Upstart job:
Recently I've been exploring Upstart's user jobs functionality. User jobs allow non-root users to have their own jobs in ~/.init/ that they can control.
The first thing I did was to create a simple job:
task
script
sleep 5
end script
This job simply blocks for five seconds, which allows me to test whether user jobs are working properly. To use it I saved it to ~/.init/my-test-job.conf, and then started it via start my-test-job.
Unfortunately by default on Ubuntu 11.10, user jobs are disabled, which meant the start command failed with the error:
To enable user jobs, I had to edit /etc/dbus-1/system.d/Upstart.conf and change it to:
This file contains 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
The original DBus configuration is far more restrictive in what messages it
allows to reach Upstart (basically read/write for root and read for everyone else). The above configuration (taken from Upstart's
source code) allows any user to control Upstart. This does seem like a
security problem, but apparently Upstart can handle user permissions
internally.
After making this change, I was able to start my job successfully:
$ start my-test-job
my-test-job stop/waiting
Documentation is pretty scarce, but there's a small section in the man page that's worth checking out (search for User Jobs).