启动 RunApp时 出现错误:如
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
这是因为端口8080:冲突
解决方法
打开windows下dos命令窗口 ,输入 netstat -ano|findstr + 端口号 例如
netstat -ano|findstr "8080"
如果出现 "netstat"不是内部或外部命令,也不是可运行的程序或批处理文件。
则右键我的电脑--属性---高级系统设置--环境变量---找到Path--编辑--新建
C:\WINDOWS\system32
重启dos命令窗口 ,输入 netstat -ano|findstr + 端口号
最后一列为PID,,PID为占用端口的进程号
taskkill -pid 8892 –f --杀死8892进程号
重启RunApp