linux如何查看被占用的端口

一、lsof命令

$ lsof -i:端口号

注意 -i 和 端口号中间的:与两边紧挨着没有空格! 

然后把端口对应的进程关掉:

$ kill -9 [UID]然后把端口对应的进程关掉:


二、netstat命令

netstat -tulpn | grep :8000

命令查出端口被哪个进程占用了然后用

kill -9 <进程 pid> 杀掉进程。

你可能感兴趣的:(linux/unix,HTTP)