mongodb 經常掛掉

2021-09-12 05:54:07 字數 1090 閱讀 4135

#!/bin/sh

##mongod - startup script for mongod

## chkconfig: - 85 15

# description: mongodb database.

# processname: mongod

# source function library

. /etc/rc.d/init.d/functions

# things from mongod.conf get there by mongod reading it

# options

#mongod

mongod="/usr/local/mongodb/bin/mongod"

lockfile=/var/lock/subsys/mongod

start()

stop()

restart ()

ulimit -n 12000

retval=0

case "$1" in

start)

start

;;stop)

stop

;;restart|reload|force-reload)

restart

;;condrestart)

[ -f $lockfile ] && restart || :

;;status)

status $mongod

retval=$?

;;*)

echo "usage: $0 "

retval=1

esac

exit $retval

將**儲存到 /etc/init.d/mongodb,然後使用 chmod +x /etc/init.d/mongodb 新增執行許可權。

現在,就可以使用 service 命令來控制mongodb了:

service mongodb start|stop|restart

#或/etc/init.d/mongodb start|stop|restart

沒有用nohup啟動,所以只要mongo的終端離線或者關閉,mongodb就會自動退出了!

mysql經常掛掉 mysql老是掛的問題

190629 10 44 21 error mysqld out of memory needed 128917504 bytes 190629 10 44 21 error mysqld out of memory needed 96681984 bytes 190629 10 44 23 inn...

伺服器經常掛掉的6個原因

如果沒有任何經驗,學習如何擴充套件乙個 是相當困難的。假設現在你有很多像highscalability.com那樣 你需要一些好的解決方案來擴充套件它們,但是世上沒有 萬能藥 沒有哪個解決方案可以適應所有 的需要。你不得不自己動手,通過不斷地思考來找到乙個能滿足你的需求的解決方案。我也是這樣做的。這...

伺服器經常掛掉的6個原因

如果沒有任何經驗,學習如何擴充套件乙個 是相當困難的。假設現在你有很多像highscalability.com那樣 你需要一些好的解決方案來擴充套件它們,但是世上沒有 萬能藥 沒有哪個解決方案可以適應所有 的需要。你不得不自己動手,通過不斷地思考來找到乙個能滿足你的需求的解決方案。我也是這樣做的。這...