Reputation: 537
I need help in setting up remote debugging. Could you please provide me instructions on how to do this? I’m using IntelliJ IDEA.
I get an error after configuring port and host:
Error running liferay: Unable to open debugger port (localhost:8080): java.io.IOException "handshake failed - connection prematurally closed»
Upvotes: 0
Views: 2161
Reputation: 2135
Configuration looks correctly, so there are two options why it is not working:
You just run your server in not debugging mode. If you use Tomcat start server like this:
On windows
$ catalina.bat jpda start
On Linux/Unix
$ catalina.sh jpda start
Upvotes: 1