Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jboss port configuration on Intellij Idea error

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.

like image 295
Super Hornet Avatar asked Mar 29 '14 10:03

Super Hornet


People also ask

How does JBoss integrate with IntelliJ?

WildFly and IntelliJ Integration You can find it in: Settings > Build, Executions, Deployment -> Application Servers > “+” > JBoss Server. Then, you will be able to add a Run/ Debug configuration which includes JBoss Server.

What is the default port for JBoss?

ports-default: The standard ports, for instance JBoss Web listens for HTTP requests on 8080. You can view all of the standard port settings on the Configuration tab of the Service Binding Manager resource.

How do I start Wildfly on IntelliJ?

select new and select JBOSS/Wildfly server. And in the next window paste your extraction path, and intelliJ will automatically identify the Wildfly version. Then click next and create. After that your new application will start up and begin to index and this will take a couple of minutes.


2 Answers

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.

like image 184
Alexander Avatar answered Oct 06 '22 12:10

Alexander


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

like image 41
jiboOne Avatar answered Oct 06 '22 14:10

jiboOne