增加openresty

master
pan 4 years ago
parent e4a9745272
commit e4ab6eeb48
  1. 4
      shell/checkPort
  2. 6
      shell/killNode

@ -1,6 +1,6 @@
#!/bin/sh
# 检查端口是否存在
# 检查客户端和服务端端口是否存在
#存在返回0否则返回1
source riskenv
if [[ `findPortPid $PORT|wc -l` -eq 1 && `findPortPid $serverPort|wc -l` -eq 1 ]]
then

@ -2,11 +2,11 @@
#杀死进程
if [ -e pid ]
then
pid=`echo pid`
kill -9 $pid
p=`cat pid`
kill -9 $p
if [ $? -eq 0 ]
then
echo "kill $pid success"
echo "成功杀死进程:$p"
rm -f pid
fi
fi

Loading…
Cancel
Save