码迷,mamicode.com
首页 > 数据库 > 详细

mongodb的启动脚本!

时间:2018-08-20 16:39:46      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:block   linux   ODB   x86_64   ase   kconfig   star   --   mongo   

#!/bin/sh
#chkconfig: 2345 80 90
#description: mongodb
start() {
/usr/local/mongodb-linux-x86_64-rhel70-3.6.6/bin/mongod -f /usr/local/mongodb-linux-x86_64-rhel70-3.6.6/bin/mongodb.conf
}

stop() {
/usr/local/mongodb-linux-x86_64-rhel70-3.6.6/bin/mongod -f /usr/local/mongodb-linux-x86_64-rhel70-3.6.6/bin/mongodb.conf --shutdown
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac

mongodb的启动脚本!

标签:block   linux   ODB   x86_64   ase   kconfig   star   --   mongo   

原文地址:http://blog.51cto.com/13043516/2162000

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!