Linux命令–根据端口号查看进程号(PID) 查找8080端口对应的进程号: netstat -nlp|grep :8297 对应的进程号1061,如果想杀掉此进程,可以用一下命令: kill -9 1061