
Web server failed to start. Port 81 was already in use.
Action:
Identify and stop the process that's listening on port 81 or configure this application to listen on another port.
识别并停止在端口81上侦听的进程或对此进行配置
解决方法:
在命令窗口输入netstat -aon|findstr "81"(被占用的端口号)
找到被占用的端口号对应编号,杀死这个进程taskkill /pid 21784(对应编号) /f
启动成功

当Webserver无法启动,提示端口81已被使用时,可以使用命令行工具netstat查找占用该端口的进程ID,然后通过taskkill命令强制结束该进程,以释放端口,使Webserver能正常启动。
1万+

被折叠的 条评论
为什么被折叠?



