mirror of
https://github.com/fatedier/frp.git
synced 2024-11-15 12:34:29 +01:00
25 lines
549 B
Bash
Executable File
25 lines
549 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pid=`ps aux|grep './bin/echo_server'|grep -v grep|awk {'print $2'}`
|
|
if [ -n "${pid}" ]; then
|
|
kill ${pid}
|
|
fi
|
|
|
|
pid=`ps aux|grep './bin/http_server'|grep -v grep|awk {'print $2'}`
|
|
if [ -n "${pid}" ]; then
|
|
kill ${pid}
|
|
fi
|
|
|
|
pid=`ps aux|grep './../bin/frps -c ./conf/auto_test_frps.ini'|grep -v grep|awk {'print $2'}`
|
|
if [ -n "${pid}" ]; then
|
|
kill ${pid}
|
|
fi
|
|
|
|
pid=`ps aux|grep './../bin/frpc -c ./conf/auto_test_frpc.ini'|grep -v grep|awk {'print $2'}`
|
|
if [ -n "${pid}" ]; then
|
|
kill ${pid}
|
|
fi
|
|
|
|
rm -f ./frps.log
|
|
rm -f ./frpc.log
|