Posts

Showing posts with the label Glassfish

Cannot Start GlassFish 4.1 From Within Netbeans 8.0.1 Service Area

Image
Answer : I also had this problem, it is because there is an application LISTENING to 8080 port. To solve this problem I followed the below steps: Open cmd.exe then type netstat -aon | find ":8080" | find "LISTENING" You will see like this result TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 1464 Copy PID "1464". Open Task Manager (Ctrl+Alt+del), go to the details tag, then find the program or service via PID that is listening to the port 8080 then STOP it or End process. Your description is a little bit strange because the GlassFish server can even start if port 1527 is occupied, because the Java Derby database is a separate java process. So one option could be to just ignore the message in case that the real GlassFish server is indeed starting correctly (NetBeans displays the output for the GlassFish server and the Derby server in different tabs). Nevertheless you can try to disable starting the registered Derby ser...