Yesterday, Wildfly 8 was released in the final version (8.0.0.Final) and I thought I’d share how I set it up for development. As you will see, there is nothing much to it which I see as a very good sign.
So, make sure you have a modern Java version installed, and then do this:
Download and unpack it
1 2 3 |
|
Make sure it can start
1 2 |
|
At this point, you should see the Wildfly welcome screen.
Make it insecure
Security is good, but it does get in your way when developing. In order to work with the server you need to add an administrator user. Doing so is very easy, but the default password policy settings make life as a developer uneccessary hard (reasonable security is enforced).
In order to make life more convenient for local development, you can however disable all of the annoying security policies by editing the file add-user.properties.
1 2 3 4 5 6 7 8 9 10 11 12 |
|
Add user admin/admin
Now you are ready to add your standard development administrator user: admin, password: admin. :–)
1
|
|
The full installation and getting started guide can be found here. It is quite good actually. WildFly8 Getting Started
Enjoy!