centos7解决端口占用 1. 查看那个进程占用了端口2. 查看占用端口进程的具体信息3. 强制杀死进程 1. 查看那个进程占用了端口 netstat -tlnp | grep port 2. 查看占用端口进程的具体信息 lsof -i:port 3. 强制杀死进程 kill -9 PID