Web server failed to start. Port 9020 was already in use.
Web服务器无法启动。端口9020已在使用中。
解决思路:端口被占用了,需要我们去杀死相应的进程,重新启动即可。
window环境下
netstat -ano |findstr “9002”
taskkill /f /t /im “7900”
Web server failed to start. Port 9020 was already in use.
Web服务器无法启动。端口9020已在使用中。
解决思路:端口被占用了,需要我们去杀死相应的进程,重新启动即可。
window环境下
netstat -ano |findstr “9002”
taskkill /f /t /im “7900”