Netbeans does not know that Wildfly already started

前端 未结 2 1166
既然无缘
既然无缘 2021-01-16 06:24

I´m using netbeans 11.2 with wildfly 15 application server. When i try to run my test applicaiton, after deployment I get this error:

WildFly Application Ser         


        
2条回答
  •  南笙
    南笙 (楼主)
    2021-01-16 07:20

    Use below command from command prompt: It will kill port 8080

    for /f "tokens=5" %a in ('netstat -aon ^| find ":8080" ^| find "LISTENING"') do taskkill /f /pid %a

提交回复
热议问题