Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Update wildfly guide to 9.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Oct 6, 2015
1 parent eb9acfe commit 3547944
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/wildfly.md
Expand Up @@ -31,25 +31,25 @@ write them ourselves. :)

Thankfully, installing WildFly is trivial:

$ wget http://download.jboss.org/wildfly/8.2.0.Final/wildfly-8.2.0.Final.zip
$ unzip wildfly-8.2.0.Final.zip
$ wget http://download.jboss.org/wildfly/9.0.1.Final/wildfly-9.0.1.Final.zip
$ unzip wildfly-9.0.1.Final.zip

Downloading and unpacking it somewhere are all there is to it. Running
it is easy, too:

$ wildfly-8.2.0.Final/bin/standalone.sh
$ wildfly-9.0.1.Final/bin/standalone.sh

Pass it `-h` to see what options it supports. The main one you'll use
is `-c` which refers to one of its config files beneath
`standalone/configuration`. The default config doesn't include
HornetQ, for example, so to use TorqueBox messaging, you'll need to
start WildFly as follows:

$ wildfly-8.2.0.Final/bin/standalone.sh -c standalone-full.xml
$ wildfly-9.0.1.Final/bin/standalone.sh -c standalone-full.xml

And if you want clustering...

$ wildfly-8.2.0.Final/bin/standalone.sh -c standalone-full-ha.xml
$ wildfly-9.0.1.Final/bin/standalone.sh -c standalone-full-ha.xml

You can create your own, of course, too.

Expand Down

0 comments on commit 3547944

Please sign in to comment.