Olgun Kaya
Olgun Kaya

Reputation: 2579

Debug Jboss 7.x with intellij idea

I am trying to debug the application on my macbook pro ( os Mountain Lion ). But when I click on debug it is alerting that: unable to connect localhost 4010. I set the port to 4010 on jboss. Here is the output while app starting.

Listening for transport dt_socket at address: 4010

On Jidea; settings for debug is "remote server" Remote Connection Settings;

host : localhost
port : 4010

The config ss1 The config ss2

Upvotes: 4

Views: 18199

Answers (2)

la0rg
la0rg

Reputation: 51

In case if you just want to connect to your local application server:

  1. Open "Run/Debug configurations" window.
  2. Add new configuration - Remote
  3. Set up Port to your Jboss socket port

Upvotes: 3

CrazyCoder
CrazyCoder

Reputation: 401877

Most likely you are using debugger port in place for HTTP port:

HTTP port

Debugger port

Upvotes: 4

Related Questions