1. 问题描述
程序非正常关闭倒置端口被占用
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 11026 was already in use.
Action:
Identify and stop the process that's listening on port 11026 or configure this application to listen on another port.
2. 解决
win+R 输入cmd 打开
1.在控制台输入
netstat -aon|findstr "11026"
记住后面的数字
2.输入
taskkill /pid 9620 /f
杀掉进程即可