1、查看发包的端口
netstat -tu
2、查看端口的进程
netstat -tunlp|grep 端口号
lsof -i:端口
3、根据进程查看执行路径
ls -l /proc/6044
4、杀掉进程
kill -9 pid
">
1、查看发包的端口
netstat -tu
2、查看端口的进程
netstat -tunlp|grep 端口号
lsof -i:端口
3、根据进程查看执行路径
ls -l /proc/6044
4、杀掉进程
kill -9 pid