1、先在/etc/rc.d/init.d下用vim 建立檔案mongod,内容如下:
#!/bin/bash
#
#chkconfig: 2345 80 90
#description: mongodb
start() {
mongod路徑 --config mongodb.conf路徑
}
stop() {
mongod路徑 --config mongodb.conf路徑 --shutdown
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo
$"Usage: $0 {start|stop|restart}"
exit 1
esac
2、運作指令
chmod +x /etc/rc.d/init.d/mongod
chkconfig --add mongod
chkconfig --level 345 mongod on
chkconfig --list mongod
service mongod start