杀死进程并重启Openresty,杀死进程openresty


#!/bin/bash
ps -ef | grep nginx | gawk '{print$2}' | while read line 
do 
   kill -s 9 $line 
done
nginx -p /home/oupeng/github/Openresty/openresty-test/

相关内容

    暂无相关文章