Reputation: 3548
I didn't touch any configuration file or IntelliJ IDEA setting but I just suddenly lost the HTTP management port configuration in my JBOSS WildFly 8.1 configuration.
How could this have happened and where to look for a fix? I sure as heck didn't touch standalone.xml.
EDIT: Hmm ok strange, now I went to check my standalone.xml and instead of that the configuration directory had only standalone.xml.tmp.
No slightest idea why this happened. First time ever. But renaming it back to standalone.xml fixed the problem.
Upvotes: 2
Views: 3362
Reputation: 11
In my case, I had two "deplyments" inside the "deployments" tag of two different projects in standalone.xml. I deleted one and kept the one I was interested in and it worked again.
Upvotes: 0
Reputation: 37
I randomly got this issue yesterday on 2020.3 so I thought I'd share another possible solution.
I checked my standalone.xml and everything looked normal. For me, the only way to fix this was to remove and re-add the artifact in the Run Configuration. It's a simple solution, but hopefully this will help someone who's getting this issue on a recent version of IntelliJ.
Upvotes: 0
Reputation: 121
I've got this issue once my IDEA updated this morning. Just replace your existing standalone.xml
with original one which is from jboss.zip
. If you have custom config in standalone.xml
, set up profile in maven for wildfly plugin instead of manually modify this xml file.
Upvotes: 0
Reputation: 3548
standalone.xml had turned into standalone.xml.tmp for an unknown reason. I hadn't edited the file or had it open anywhere.
Renaming the file back to standalone.xml fixed the problem.
Upvotes: 5