...
OpenJDK Runtime Environment (build 1.8.0_91-8u91-b14-3ubuntu1~16.04.1-b14)
Software dependency:
Code Block | ||
---|---|---|
| ||
sudo apt-get install doxygen |
...
sudo apt-get install perl |
...
sudo apt-get install shtool |
...
sudo apt-get install graphviz |
...
Ant: |
...
Apache Ant(TM) version 1.9.6 |
Building Zookeeper on AArch64
...
Building & UT using ant
Code Block | ||
---|---|---|
| ||
$ ant |
...
$ ant -Djavac.args="-Xlint -Xmaxwarns 1000 " clean test tar |
Configuration
To start ZooKeeper we need a configuration file. Here is a sample, create it in conf/zoo.cfg:
...
the port to listen for client connections
Start ZooKeeper:
Code Block | ||
---|---|---|
| ||
$ bin/zkServer.sh start |
...
ZooKeeper JMX enabled by default |
...
Using config: /home/yuqi/zookeeper/bin/../conf/zoo.cfg |
...
Starting zookeeper ... STARTED |
From JPS, it is noted that zookeeper is running on AArch64 Server.
Code Block | ||
---|---|---|
| ||
$ jps |
...
20351 ZooKeeperMain |
...