mongodb3.4.4安裝
阿新 • • 發佈:2017-06-07
status start local 文章 烏龜 mongodb3.4.4源碼安裝
mongodb3.4.4源碼安裝
此文章 來自烏龜運維wuguiyunwei.com
QQ群:602183872
超簡單就那麽兩步
完事了 看效果
chmod +x /etc/init.d/mongod && /etc/init.d/mongod start
啟動腳本內容如下 直接復制粘貼即可
#!/bin/bash # #chkconfig: 2345 85 88 #http://wuguiyunwei.com start() { sudo -u mongod /usr/local/mongodb/bin/mongod --dbpath=/data/db --fork --logpath=/data/db/wuguiyunwei.com-log --pidfilepath=/data/db/wuguiyunwei.com-pid } stop() { /usr/local/mongodb/bin/mongod --shutdown } status() { netstat -anpt | grep mongod if [ $? -eq 0 ] then echo -e "\033[32m mongodb Already run..... \033[0m" else echo -e "\033[31m mongodb not run..... \033[0m" fi } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; status) status ;; *) echo $"Usage: $0 {start|stop|restart|status}" exit 1 esac
mongodb3.4.4安裝