-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuwsgi
114 lines (104 loc) · 2.09 KB
/
uwsgi
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#!/bin/sh
#
# chkconfig: 35 90 90
# description: start and stop the uWSGI server.
# Avoid using root's TMPDIR
unset TMPDIR
RETVAL=1
KIND="uWSGI"
uwsgi_bin=/opt/python-2.7.5/bin/uwsgi
ini_file=/opt/www/mysite/mysite/django_uwsgi.ini
pid_file=/opt/www/mysite/logs/uwsgi/uwsgi.pid
log_file=/opt/www/mysite/logs/uwsgi/uwsgi.log
[ -x $uwsgi_bin ] || exit 2
start() {
status
ret_code=$?
RETVAL=1
if [ $ret_code -ne 0 ];then
$uwsgi_bin --ini $ini_file >/dev/null 2>&1 &
RETVAL=$?
fi
tips="Starting $KIND services: "
if [ $RETVAL -ne 0 ];then
echo "$tips FAILED"
else
echo "$tips SUCCESS"
fi
return $RETVAL
}
stop() {
status
if [ $? -eq 0 ];then
if [ -f $pid_file ];then
pid=`cat $pid_file`
echo "Kill pid: $pid"
if [ -n $pid ];then
cat /dev/null > $pid_file
kill -9 $pid
RETVAL=$?
fi
fi
fi
tips="Shutting down $KIND services: "
if [ $RETVAL -ne 0 ];then
echo "$tips FAILED"
else
echo "$tips SUCCESS"
fi
return $RETVAL
}
restart() {
stop
sleep 2
start
}
reload() {
status
if [ $? -eq 0 ];then
$uwsgi_bin --reload $pid_file
RETVAL=$?
fi
tips="Reloading $KIND services: "
sleep 3
if [ $RETVAL -ne 0 ];then
echo "$tips FAILED"
else
echo "$tips SUCCESS"
fi
return $RETVAL
}
status() {
tips="Status $KIND services: "
ret=`ps -ef | grep -v grep | grep $uwsgi_bin | grep -v status | grep -v stop | grep -v restart | grep -v reload | grep -v start`
if [ $? -eq 0 ];then
RETVAL=0
fi
if [ $RETVAL -ne 0 ];then
echo "$tips Not Running"
else
echo "$tips Is Running"
fi
return $RETVAL
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
reload)
reload
;;
status)
status
;;
*)
echo $"Usage: $0 {start|stop|restart|reload|status}"
exit 1
esac
exit $?