21 lines
585 B
Text
21 lines
585 B
Text
|
|
=== Booting the Cluster
|
|
|
|
Booting {project_name} in a cluster depends on your <<_operating-mode, operating mode>>
|
|
|
|
.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
|
|
----
|
|
|
|
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.
|
|
|