Vagrant is a tool for building and managing virtual machine environments in a single workflow. Following the instructions here to install the tool.
WildFly is an application server authored by JBoss, written in Java and implements the Java Platform Enterprise Edition (Java EE) specification.
- Clone this project
- Access the project directory
- Start and provisioning the Virtual Machine
$ vagrant up --provosioning
- Access the VM using:
$ vagrant ssh
- Validate the WildFly instalation accessing the page http://127.0.0.1:8080
Use /opt/wildfly/bin/add-user.sh script to add a new user to connect on the administration console or remotely using the command line CLI
$ cd /opt/wildfly/bin/
$ ./add-user.sh
To access the WildFly Administration Console from the CLI you can use the /opt/wildfly/bin/jboss-cli.sh script with the option --connect
$ cd /opt/wildfly/bin/
$ ./jboss-cli.sh --connect
By default, the WildFly administration console is available only from localhost at http://localhost:9990/console. Sign in the console using the user created before.
The WildFly detailed instalation guide is here