-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstash web init
67 lines (62 loc) · 1.64 KB
/
logstash web init
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
#!/bin/bash
# logstash web daemon
# chkconfig: 345 20 80
# description: logstash web
# processname: logstash-web
MODE="web"
NAME="logstash-$MODE"
DAEMON="/usr/bin/java -Xms256m -Xmx1g -Xss256k -Djava.awt.headless=true -jar /opt/logstash/bin/logstash.jar web"
DESC="Logstash ElasticSearch Web"
PIDFILE="/var/run/$NAME.pid"
SCRIPTNAME=/etc/init.d/$NAME
case "$1" in
start)
if [ -f $PIDFILE ]; then
echo "$NAME is already running or $PIDFILE needs to be removed"
ps -efww | grep `cat ${PIDFILE}`
exit 1
fi
printf "%-50s" "Starting $NAME..."
PID=`$DAEMON > $LOG 2>&1 & echo $!`
#echo "Saving PID" $PID " to " $PIDFILE
if [ -z $PID ]; then
printf "%s\n" "Fail"
else
echo $PID > $PIDFILE
ps -o pid,pcpu,pmem,ni -p $PID
printf "%s\n" "Ok"
fi
;;
status)
printf "%-50s" "Checking $NAME..."
if [ -f $PIDFILE ]; then
PID=`cat $PIDFILE`
if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
printf "%s\n" "Process dead but pidfile exists"
else
echo "Running"
ps -o pid,pcpu,pmem,ni -p $PID
fi
else
printf "%s\n" "Service not running"
fi
;;
stop)
printf "%-50s" "Stopping $NAME"
PID=`cat $PIDFILE`
if [ -f $PIDFILE ]; then
kill $PID
printf "%s\n" "Ok"
rm -f $PIDFILE
else
printf "%s\n" "pidfile not found"
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {status|start|stop|restart}"
exit 1
esac