mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
11 lines
243 B
Plaintext
11 lines
243 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 [345]
|
|
|
|
exec su -c "/usr/bin/mongod --config /etc/mongodb.conf" -s "/bin/sh" mongodb
|