blob: d4771ecd1a928b861e7cddffd2e1d932d106e3fa (
plain)
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
|
#!/bin/sh
#
# /etc/rc.d/rc.mongo
#
# Start/stop/restart the mongodb server.
#
#
PID=/var/state/mongodb.pid
LOG=/var/log/mongodb
DBPATH=/var/lib/mongodb
mongo_start() {
mkdir -p $DBPATH
/usr/bin/mongod \
--dbpath=$DBPATH \
--fork \
--pidfilepath=$PID \
--logpath=$LOG \
--nohttpinterface
}
mongo_stop() {
kill `cat $PID`
rm $PID
}
mongo_restart() {
mongo_stop
sleep 2
mongo_start
}
case "$1" in
'start')
mongo_start
;;
'stop')
mongo_stop
;;
'restart')
mongo_restart
;;
*)
# Default is "start", for backwards compatibility with previous
# Slackware versions. This may change to a 'usage' error someday.
mongo_start
esac
|