JBoss Wildfly in 5 minutes (or a little bit more, but not much)
Access http://www.wildfly.org/
Step 2: Download the server
Download Wildfly v8.0.0 from http://download.jboss.org/wildfly/8.0.0.Final/wildfly-8.0.0.Final.zip
Step 3: Install the server
Unzip the downloaded zip file:
Step 4: Start the server
Go to the bin
directory and start the server:
On my not so fast iMac, the first time the server was started, it took about 20 seconds,
the second time only about 4 seconds:
Check, if the server is started on http://localhost:8080. You should see
the Wildfly welcome page.
Step 5: Access Administration console
Open http://localhost:9990.
This will not work and it states:
To add a new user execute the add-user.sh script within the bin folder of your
WildFly installation and enter the requested information.
Try that and answer the questions:
I added an admin user. Access http://localhost:9990 again, and
the admin cosole is shown.
Step 6: Deploy the first application
Clone from GitHub:
Build and deploy the project:
You should see the following log messages:
Access the application:
http://localhost:8080/wildfly-helloworld/HelloWorld
You should see the "Hello World!" message.
Original post: http://peter-on-java.blogspot.com/2014/05/wildfly-ahoy-in-5-minutes-or-little-bit.html
Tags
javaee