Linux启动服务时提示错误:Address already in use

netstat命令
1、查看占用端口进程的PID:
netstat -tunlp|grep {port}
2、根据PID kill掉相关进程:
kill -9 {PID}

 

你可能感兴趣的:(linux)