ljhk 发表于 2015-9-17 08:20:08

MongoDB启动脚本

今天研究mongodb,搭建时候发现源码包没提供启动脚本,便顺手写了一个方便使用。


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# cat /etc/init.d/mongodb
#!/bin/bash
# author: baishaohua
# mongodb boot shell

MGDB_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 1
esac






页: [1]
查看完整版本: MongoDB启动脚本