Our initial step is to create ZooKeeper connection information for Mesos. This configuration enables all of our servers to connect to the correct master server. The ZooKeeper cluster will only consist of our master server's information. The master server will be only the member of our ZooKeeper cluster, and all of the servers will communicate with our master using the following configuration file. Let's see that configuration file:
This is the ZooKeeper configuration file.
We need to complete this step by editing the file and adding the information of our three master servers. As you can ...