swoole_exmple/Script/Reload.sh

4 lines
101 B
Bash
Raw Permalink Normal View History

2021-12-24 16:44:53 +08:00
pid=`pidof http_server`
echo "The http server pid is ${pid}"
kill -USR1 $pid
echo "Reloading success"