2016-04-30 04:39:32 +00:00
|
|
|
|
2016-04-28 22:25:54 +00:00
|
|
|
=== Booting the Cluster
|
|
|
|
|
2017-08-28 12:50:14 +00:00
|
|
|
Booting {project_name} in a cluster depends on your <<_operating-mode, operating mode>>
|
2016-04-28 22:25:54 +00:00
|
|
|
|
|
|
|
.Standalone Mode
|
|
|
|
[source]
|
|
|
|
----
|
|
|
|
$ bin/standalone.sh --server-config=standalone-ha.xml
|
|
|
|
----
|
|
|
|
|
|
|
|
.Domain Mode
|
|
|
|
[source]
|
|
|
|
----
|
|
|
|
$ bin/domain.sh --host-config=host-master.xml
|
|
|
|
$ bin/domain.sh --host-config=host-slave.xml
|
|
|
|
----
|
|
|
|
|
2017-12-06 14:41:48 +00:00
|
|
|
You may need to use additional parameters or system properties. For example, the parameter `-b` for the binding host or the system property
|
|
|
|
`jboss.node.name` to specify the name of the route, as described in <<sticky-sessions,Sticky Sessions >> section.
|
|
|
|
|