0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 16:24:56 +01:00
mongodb/rpm/init.d-mongod

73 lines
1.2 KiB
Plaintext
Raw Normal View History

2009-12-03 20:20:35 +01:00
#!/bin/bash
# mongod - Startup script for mongod
# chkconfig: 35 85 15
# description: Mongo is a scalable, document-oriented database.
# processname: mongod
# config: /etc/mongod.conf
# pidfile: /var/run/mongo/mongo.pid
. /etc/rc.d/init.d/functions
# things from mongod.conf get there by mongod reading it
2009-12-03 20:20:35 +01:00
OPTIONS=" -f /etc/mongod.conf"
SYSCONFIG="/etc/sysconfig/mongod"
2009-12-03 20:20:35 +01:00
mongod=${MONGOD-/usr/bin/mongod}
MONGO_USER=mongod
MONGO_GROUP=mongod
. "$SYSCONFIG" || true
2009-12-03 20:20:35 +01:00
start()
{
echo -n $"Starting mongod: "
daemon --user "$MONGO_USER" $mongod $OPTIONS
2009-12-03 20:20:35 +01:00
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/mongod && success
2009-12-03 20:20:35 +01:00
}
stop()
{
echo -n $"Stopping mongod: "
killproc -p /var/lib/mongo/mongod.lock -t30 -TERM /usr/bin/mongod
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/mongod && success
}
restart () {
stop
start
2009-12-03 20:20:35 +01:00
}
ulimit -n 12000
RETVAL=0
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload|force-reload)
restart
;;
condrestart)
[ -f /var/lock/subsys/mongodb ] && restart || :
;;
status)
status $mongod
2009-12-03 20:20:35 +01:00
;;
*)
echo "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
2009-12-03 20:20:35 +01:00
RETVAL=1
esac
exit $RETVAL