Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

MongoDB startup script

2025-02-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Today, when I studied mongodb, I found that the source package did not provide a startup script, so I wrote one that was easy to use.

[root@controller mongodb] # cat / etc/init.d/mongodb #! / bin/bash# author: baishaohua# mongodb boot shellMGDB_PATH= "/ usr/local/mongodb" MGDB_CONF= "${MGDB_PATH} / etc/mongodb.conf" cd ${MGDB_PATH} MGDB_START () {if [`ps-ef | grep 'mongod-f' | grep-v grep | wc-l` > 0] Then echo "MongoDB already start" exit 1 fi ${MGDB_PATH} / bin/mongod-f ${MGDB_CONF} if [$?-eq 0] Then echo-n "MongoDB start" echo-n "[" echo-ne "\ 033 [32m" echo-n "Successful" echo-ne "\ e [0m" echo "]" else echo "MongoDB start failed" fi} MGDB_STOP () { ${MGDB_PATH} / bin/mongod-f ${MGDB_CONF}-- shutdown if [$?-eq 0] Then echo-n "MongoDB stop" echo-n "[" echo-ne "\ 033 [32m" echo-n "Successful" echo-ne "\ e [0m" echo "]" else echo "MongoDB stop failed" fi} MGDB_STATUS () { Ps-ef | grep 'mongod-f' | grep-v grep if [$?! = 0] Then echo "MongoDB is STOP" fi} case "$1" in start) MGDB_START;; stop) MGDB_STOP;; status) MGDB_STATUS Restart) MGDB_STOP MGDB_START;; *) echo $"Usage: $0 {start | stop | status | restart}" exit 1esac

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report