根据PID杀掉进程

1.找到对应的进程

通过端口查找 

lsof -i:端口号

netstat -tunlp | grep 端口

lsof -i:9500


netstat -tunlp | grep 9500

2.根据对应的PID杀掉进程

kill PID

你可能感兴趣的:(根据PID杀掉进程)