Initial code import
[msb/apigateway.git] / openresty-ext / src / assembly / resources / openresty / stop.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)
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 DIRNAME=`dirname $0`
18 HOME=`cd $DIRNAME/nginx; pwd`
19 _NGINXCMD="$HOME/sbin/nginx"
20
21 echo =========== openresty config info  =============================================
22 echo HOME=$HOME
23 echo _NGINXCMD=$_NGINXCMD
24 echo ===============================================================================
25 cd $HOME; pwd
26
27 echo @WORK_DIR@ $HOME
28 echo @C_CMD@ $_NGINXCMD -p $HOME/ -s stop
29
30 function save_nginx_pid(){
31         nginx_id=`ps -ef | grep nginx | grep $_NGINXCMD | grep -v grep | awk '{print $2}'`
32         echo $nginx_id
33         worker_id_list=`ps -ef | grep nginx | grep $nginx_id | grep "worker process" | awk '{print $2}'`
34         echo $worker_id_list
35 }
36
37 function kill_nginx_process(){
38         ps -p $nginx_id
39         if [ $? == 0 ]; then
40                 kill -9 $nginx_id
41         fi
42
43         for worker_id in $worker_id_list
44         do
45                 ps -p $worker_id
46                 if [ $? == 0 ]; then
47                         echo kill -9 $worker_id
48                         kill -9 $worker_id
49                 fi
50         done
51 }
52 save_nginx_pid;
53 $_NGINXCMD -p $HOME/ -s stop
54 sleep 5
55 kill_nginx_process;