In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.