mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.0 KiB
104 lines
2.0 KiB
#!/bin/bash |
|
# jumpserver Startup script for the jumpserver Server |
|
# |
|
# chkconfig: - 85 12 |
|
# description: Open source detecting system |
|
# processname: jumpserver |
|
# Date: 2015-04-12 |
|
# Version: 2.0.0 |
|
# Site: http://www.jumpserver.org |
|
# Author: Jumpserver Team |
|
|
|
. /etc/init.d/functions |
|
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/node/bin |
|
|
|
base_dir=$(dirname $0) |
|
|
|
PROC_NAME="jumpsever" |
|
lockfile=/var/lock/subsys/${PROC_NAME} |
|
|
|
|
|
start() { |
|
jump_start=$"Starting ${PROC_NAME} service:" |
|
|
|
if [ -f $lockfile ];then |
|
echo "jumpserver is running..." |
|
success "$jump_start" |
|
else |
|
daemon python $base_dir/manage.py runserver 0.0.0.0:80 &>> /tmp/jumpserver.log 2>&1 & |
|
daemon python $base_dir/run_websocket.py &> /dev/null 2>&1 & |
|
sleep 2 |
|
|
|
echo -n "$jump_start" |
|
nums=0 |
|
for i in manage.py run_websocket.py;do |
|
ps aux | grep "$i" | grep -v 'grep' &> /dev/null && let nums+=1 || echo "$i not running" |
|
done |
|
|
|
if [ "x$nums" == "x2" ];then |
|
success "$jump_start" |
|
touch "$lockfile" |
|
echo |
|
else |
|
failure "$jump_start" |
|
echo |
|
fi |
|
fi |
|
|
|
|
|
} |
|
|
|
|
|
stop() { |
|
|
|
echo -n $"Stopping ${PROC_NAME} service:" |
|
|
|
if [ -e $lockfile ];then |
|
ps aux | grep -E 'manage.py|run_websocket.py' | grep -v grep | awk '{print $2}' | xargs kill -9 &> /dev/null |
|
ret=$? |
|
|
|
if [ $ret -eq 0 ]; then |
|
echo_success |
|
echo |
|
rm -f "$lockfile" |
|
else |
|
echo_failure |
|
echo |
|
fi |
|
else |
|
echo_success |
|
echo |
|
|
|
fi |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
restart(){ |
|
stop |
|
start |
|
} |
|
|
|
# See how we were called. |
|
case "$1" in |
|
start) |
|
start |
|
;; |
|
stop) |
|
stop |
|
;; |
|
|
|
restart) |
|
restart |
|
;; |
|
|
|
*) |
|
echo $"Usage: $0 {start|stop|restart}" |
|
exit 2 |
|
esac |
|
|
|
|
|
|
|
|