Modify license header
[msb/apigateway.git] / msb-core / openresty-ext / src / assembly / resources / openresty / stop.sh
1 #!/bin/bash
2 #
3 # Copyright 2016 ZTE Corporation.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 #     Author: Zhaoxing Meng
18 #     email: meng.zhaoxing1@zte.com.cn
19 #
20
21 DIRNAME=`dirname $0`
22 HOME=`cd $DIRNAME/nginx; pwd`
23 _NGINXCMD="$HOME/sbin/nginx"
24
25 echo =========== openresty config info  =============================================
26 echo HOME=$HOME
27 echo _NGINXCMD=$_NGINXCMD
28 echo ===============================================================================
29 cd $HOME; pwd
30
31 echo @WORK_DIR@ $HOME
32 echo @C_CMD@ $_NGINXCMD -p $HOME/ -s stop
33
34 function save_nginx_pid(){
35         nginx_id=`ps -ef | grep nginx | grep $_NGINXCMD | grep -v grep | awk '{print $2}'`
36         echo $nginx_id
37         worker_id_list=`ps -ef | grep nginx | grep $nginx_id | grep "worker process" | awk '{print $2}'`
38         echo $worker_id_list
39 }
40
41 function kill_nginx_process(){
42         ps -p $nginx_id
43         if [ $? == 0 ]; then
44                 kill -9 $nginx_id
45         fi
46
47         for worker_id in $worker_id_list
48         do
49                 ps -p $worker_id
50                 if [ $? == 0 ]; then
51                         echo kill -9 $worker_id
52                         kill -9 $worker_id
53                 fi
54         done
55 }
56 save_nginx_pid;
57 $_NGINXCMD -p $HOME/ -s stop
58 sleep 5
59 kill_nginx_process;