Description:
Web server failed to start. Port 6060 was already in use.
Action:
Identify and stop the process that's listening on port 6060 or configure this application to listen on another port.
就是把占用端口的程序关闭

端口号一般就在启动时打印的日志里面
查看被占用端口对应的PID(windows)
netstat -aon|findstr 58505
58505对应的是端口号
查看被占用端口对应的PID(linux)
netstat -tunlp |grep 58505
58505对应的是端口号

# pid填写上一个命令列出来的 注意有空格
tasklist|findstr ""
windows系统
taskkill /f /t /im 20676
Linux系统
20676对应的是PID
kill -9 20676
20676对应的是PID