Setting up the JBOSS server
Setting JBOSS_HOME
Set the env variable JBOSS_HOME. $ export JBOSS_HOME = path to jboss
Check the exported path using the following command. $ echo $JBOSS_HOME
Accessing the WildFly administration console
From the command line, navigate to WildFly’s bin directory.
Run the jboss-cli.sh script with the --connect option. ./jboss-cli.sh --connect
Creating a management user
To open the administration console, go to http://localhost:9990/console.
From the instructions displayed in the console, create a management user.
Go to the bin folder and run the following command: # add-user.sh
Follow the instructions on the console to create the management user.
Managing the server using a web interface
WildFly provides an option to access the application server from a web-based console.
By default, the WildFly administration console can be accessed at http://localhost:9990/console.
You can sign in using the management user you have created.
Last updated