Book Image

WildFly Cookbook

Book Image

WildFly Cookbook

Overview of this book

Table of Contents (23 chapters)
WildFly Cookbook
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Creating separate clusters in standalone mode


In this recipe, you will learn how to configure different and isolated clusters, running locally. We will try this using the standalone mode and the ha profile.

Getting ready

For this recipe, we will need the cluster-aware application named cluster-test, that you can find in my GitHub repository. If you skipped the Managing applications using the deployments folder recipe of Chapter 2, Running WildFly in Standalone Mode, please refer to it to download all the source code and projects that you will need.

To build the application, execute the following commands:

$ cd ~/WFC/github/wildfly-cookbook
$ cd cluster-test
$ mvn -e clean package

From the WildFly installation directory $WILDFLY_HOME, let's create four folders, each one representing a server node.

  1. Open a terminal and execute the following commands:

    $ cd $WILDFLY_HOME
    $ cp -a standalone cl-std-node-A1
    $ cp -a standalone cl-std-node-A2
    $ cp -a standalone cl-std-node-B1
    $ cp -a standalone cl-std-node...