Linux常用命令

查看端口占用

# 查询端口对应的PID
netstat -tlapn |grep 端口号
# PID显示在最后
kill -9 pid

你可能感兴趣的:(Linux)