暫無描述

Patrick D. Hunt d349e7bd5e cleanup event type/state fields, incompatible API change, ZOOKEEPER-139 16 年之前
bin ed70d2edcb ZOOKEEPER-82. Make the ZooKeeperServer more DI friendly. (Hiram Chirino via mahadev) 17 年之前
conf 9ab335fc92 Added initial skeleton for ZOOKEEPER-70 17 年之前
docs f813b6394a updated with latest docs from robbie, ZOOKEEPER-93 16 年之前
src d349e7bd5e cleanup event type/state fields, incompatible API change, ZOOKEEPER-139 16 年之前
CHANGES.txt d284d6fdae ZOOKEEPER-117 threading issues in Leader election 16 年之前
LICENSE.txt 47b8275402 Created notice and renamed the existing license/readme files. See ZOOKEEPER-45 17 年之前
NOTICE.txt 47b8275402 Created notice and renamed the existing license/readme files. See ZOOKEEPER-45 17 年之前
README.txt ed70d2edcb ZOOKEEPER-82. Make the ZooKeeperServer more DI friendly. (Hiram Chirino via mahadev) 17 年之前
build.xml 217107e26b ZOOKEEPER-130. update build.xml to support apache release process. 16 年之前

README.txt

Welcome to ZooKeeper!

-------------------
Run "ant" command in this directory to build the server/client. "zookeeper-dev.jar" will be output to this directory on a successful build.


-------------------
Starting the server:

1) in the conf directory make a copy of zoo_sample.cfg (ie zoo.cfg) and edit as necessary. Default values will support a "standalone" instance.

2) start the server with the following comand line:

java -cp conf:zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar org.apache.zookeeper.server.quorum.QuorumPeerMain conf/zoo.cfg

Notice that the server is picking up the log4j.properties file from the conf directory (default).


-----------------------
Starting a client shell

1) run the following command

java -cp conf:zookeeper-dev.jar:src/java/lib/log4j-1.2.15.jar org.apache.zookeeper.ZooKeeperMain :

where server and port correspond to the ZooKeeper configuration.

Notice that the client is picking up the log4j.properties file from the conf directory (default).