Github user tbouron commented on a diff in the pull request:
https://github.com/apache/brooklyn-docs/pull/210#discussion_r138631452
--- Diff: guide/ops/high-availability/high-availability-supplemental.md ---
@@ -12,34 +12,46 @@ and provides an example of how to configure a pair of
Apache Brooklyn servers to
- An NFS folder has been mounted on both VMs at
`/mnt/brooklyn-persistence` and both machines can write to the folder
\* Brooklyn can be configured to use either an object store such as S3, or
a shared NFS mount. The recommended option is to use an object
-store as described in the [Object Store Persistence]({{ site.path.guide
}}/ops/persistence/#object-store-persistence) documentation. For simplicity, a
shared NFS folder
+store as described in the [Object Store Persistence]({{
site.path.operations }}/ops/persistence/#object-store-persistence)
documentation. For simplicity, a shared NFS folder
is assumed in this example
### Launching
To start, download and install the latest Apache Brooklyn release on both
VMs following the instructions in
-[Running Apache Brooklyn]({{ site.path.guide
}}/start/running.html#install-apache-brooklyn)
+[Running Apache Brooklyn]({{ site.path.tutorials }}/start/running.html)
-On the first VM, which will be the master node, run the following to start
Brooklyn in high availability mode:
+On the first VM, which will be the master node, set the following
configuration options:
+
+- highAvailabilityMode: MASTER
+- persistMode: AUTO
+- persistenceDir: /mnt/brooklyn-persistence
+
+Then launch Brooklyn with:
{% highlight bash %}
-$ bin/brooklyn launch --highAvailability master --https --persist auto
--persistenceDir /mnt/brooklyn-persistence
+$ bin/start
{% endhighlight %}
-If you are using RPMs/deb to install, please see the [Running Apache
Brooklyn]({{ site.path.guide }}/start/running.html#install-apache-brooklyn)
+If you are using RPMs/deb to install, please see the [Running Apache
Brooklyn]({{ site.path.tutorials }}/start/running.html)
--- End diff --
Same as above
---