Skip to content

macedojleo/vagrant-wildfly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installing Vagrant

Vagrant is a tool for building and managing virtual machine environments in a single workflow. Following the instructions here to install the tool.

What is WildFly?

WildFly is an application server authored by JBoss, written in Java and implements the Java Platform Enterprise Edition (Java EE) specification.

Starting WildFly VM using vagrant box

  1. Clone this project
  2. Access the project directory
  3. Start and provisioning the Virtual Machine

$ vagrant up --provosioning

  1. Access the VM using:

$ vagrant ssh

  1. Validate the WildFly instalation accessing the page http://127.0.0.1:8080

Configure WildFly Authentication

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

Access Administration Console CLI

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

Access Administration Console GUI

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages