sijie closed pull request #2331: [conf] add zookeeper admin server settings to the configuration files URL: https://github.com/apache/incubator-pulsar/pull/2331
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/conf/global_zookeeper.conf b/conf/global_zookeeper.conf index b255f9c71b..816b3d4a97 100644 --- a/conf/global_zookeeper.conf +++ b/conf/global_zookeeper.conf @@ -29,6 +29,11 @@ syncLimit=5 dataDir=data/global-zookeeper # the port at which the clients will connect clientPort=2184 + +# the port at which the admin will listen +admin.enableServer=true +admin.serverPort=9991 + # the maximum number of client connections. # increase this if you need to handle more clients #maxClientCnxns=60 diff --git a/conf/zookeeper.conf b/conf/zookeeper.conf index ee13fe51da..e67eade61e 100644 --- a/conf/zookeeper.conf +++ b/conf/zookeeper.conf @@ -29,6 +29,11 @@ syncLimit=5 dataDir=data/zookeeper # the port at which the clients will connect clientPort=2181 + +# the port at which the admin will listen +admin.enableServer=true +admin.serverPort=9990 + # the maximum number of client connections. # increase this if you need to handle more clients #maxClientCnxns=60 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
