Reputation: 2603
In Eclipse you can set hostname for JBoss Runtime. But I can't find this configuration in IDEA Intellij.
netstat -lnt
show
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN
Upvotes: 7
Views: 4902
Reputation: 2086
You could also simply do this in IntelliJ:
Run
> Edit Configurations
from the IDE's menuApplication server
-Djboss.bind.address=0.0.0.0
to yourVM Options
Upvotes: 11
Reputation: 2603
"-b 0.0.0.0" bound JBoss on any interface.
Upvotes: 3