mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
12 lines
266 B
Plaintext
12 lines
266 B
Plaintext
# Ubuntu upstart file at /etc/init/mongodb.conf
|
|
|
|
pre-start script
|
|
mkdir -p /var/lib/mongodb/
|
|
mkdir -p /var/log/mongodb/
|
|
end script
|
|
|
|
start on runlevel [2345]
|
|
stop on runlevel [06]
|
|
|
|
exec su -c "/usr/bin/mongod --config /etc/mongodb.conf" -s "/bin/sh" mongodb
|