Jboss port configuration on Intellij Idea error

31,538

Solution 1

Possible cause maybe an invalid configuration file "standalone.xml" or any other config file that you are using. I've put a tag at the wrong place and got the same error.

Solution 2

It seems that IntelliJ IDEA was not able to read offset value from "standalone.xml". to solve it, just set Port offset to 0 in Configuration window, it will manually add additional VM option: -Djboss.socket.binding.port-offset=0

enter image description here

Solution 3

Your standalone xml may be malformed in some way. Check to see if you have special characters that you will have to escape or extra closing or opening tags etc.

Solution 4

look for this in your standalone.xml

socket-binding name="management-native" interface="management" port="9999"

Source: http://youtrack.jetbrains.com/issue/IDEA-77592

Solution 5

My case was that there was no config.

Folder c:\jboss-eap-6.4.6\standalone\configuration\ was without configuration files. There was only one folder org.6.4.0, where was the configuration.

The solution was to copy configuration files from c:\jboss-eap-6.4.6\standalone\configuration\org.6.4.0\ to c:\jboss-eap-6.4.6\standalone\configuration\

Share:
31,538
Super Hornet
Author by

Super Hornet

https://www.youtube.com/user/m1983526

Updated on February 21, 2022

Comments

  • Super Hornet
    Super Hornet over 2 years

    I'm trying to run my application on Jboss App Server by Intellij Idea12. I've done configuration: enter image description here

    but As you can see in the picture I got the error Management Port Configuration not found.