Running and Verifying WildFly
- Run JBoss.
- Method 1: Add a parameter to the command to bind the IP address.
1sh /opt/wildfly/bin/standalone.sh -Djboss.bind.address=0.0.0.0
Or1sh /opt/wildfly/bin/standalone.sh -b=0.0.0.0
Or1sh /opt/wildfly/bin/standalone.sh -Djboss.bind.address=IP
- Method 2: Modify the IP address bound in the configuration file.
- Open the file.
1vi /opt/wildfly-16.0.0.Final/standalone/configuration/standalone.xml - Change 127.0.0.1 to 0.0.0.0. Save the file and exit.
- Start JBoss.
1sh /opt/wildfly/bin/standalone.sh
View the logs:
1vi /opt/wildfly-16.0.0.Final/standalone/log/server.log1vi /opt/wildfly-16.0.0.Final/standalone/log/audit.logView the listening port:
1netstat -anpt | grep 8080
- Open the file.
- Method 1: Add a parameter to the command to bind the IP address.
- Verify JBoss.
Open the browser and enter http://IP:8080 in the address box. If the WildFly welcome page is displayed, the execution is successful.

If you cannot access the web page, check the IP address and port number.
ping IP
telnet IP 8080
Parent topic: JBoss (WildFly) Deployment Guide