shell script - check mongod server is running

2019-03-16 23:37发布

I have a shell script to do some mongo db actions:

e.g. mongo testdb --eval "db.dropDatabase()"

BUT, if the mongod server is not running, I get:

MongoDB shell version: 2.0.4
connecting to: testdb
Tue May 14 04:33:58 Error: couldn't connect to server 127.0.0.1 shell/mongo.js:84

Is there a way in mongo I can check the connection status? Eventually I want something like:

if(mongod is running):
    mongo testdb --eval "db.dropDatabase()"
else:
    echo "pls make sure your mongod is running"
    exit 1

标签: mongodb shell
3条回答
闹够了就滚
2楼-- · 2019-03-16 23:51

try running this in your shell script:-

pgrep mongod

If the value is numeric you know that the process is running, if you get an empty value, flag it as service not running...

查看更多
淡お忘
3楼-- · 2019-03-16 23:57

You should be able to create a bash script like this:

mongo --eval "db.stats()"  # do a simple harmless command of some sort

RESULT=$?   # returns 0 if mongo eval succeeds

if [ $RESULT -ne 0 ]; then
    echo "mongodb not running"
    exit 1
else
    echo "mongodb running!"
fi
查看更多
我只想做你的唯一
4楼-- · 2019-03-17 00:11

this is what i run to check if mongod is up:

# this script checks if the mongod is running.
# if not, send mail
#

EMAILIST=dba@wherever



`ps -A | grep -q '[m]ongod'`

if [ "$?" -eq "0" ]; then
    exit 0
else
    echo "The mongod server SB2MDB01 is DOWN" | mailx \
    -s "Server DOWN: SB2MDB01" $EMAILIST
fi

exit 0
查看更多
登录 后发表回答