From ebf6a9c483d694fef4cbb59b3fbcc519d01d8e4b Mon Sep 17 00:00:00 2001 From: pavan-zivame Date: Thu, 17 Aug 2017 17:54:39 +0530 Subject: [PATCH] Small correction where windows path specified instead of linux ...For first zookeeper configuration, in the same doc page, path specified is linux and suddently for second and third configuration it seems somwhow changed to windows path which creates confusion. So changed these windows path to linux path as given in first configuration. --- .../src/setting-up-an-external-zookeeper-ensemble.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solr/solr-ref-guide/src/setting-up-an-external-zookeeper-ensemble.adoc b/solr/solr-ref-guide/src/setting-up-an-external-zookeeper-ensemble.adoc index d82ac29c5e61..a5dab0ef3963 100644 --- a/solr/solr-ref-guide/src/setting-up-an-external-zookeeper-ensemble.adoc +++ b/solr/solr-ref-guide/src/setting-up-an-external-zookeeper-ensemble.adoc @@ -138,7 +138,7 @@ The `/conf/zoo2.cfg` file should have the content: [source,bash] ---- tickTime=2000 -dataDir=c:/sw/zookeeperdata/2 +dataDir=/var/lib/zookeeperdata/2 clientPort=2182 initLimit=5 syncLimit=2 @@ -152,7 +152,7 @@ You'll also need to create `/conf/zoo3.cfg`: [source,bash] ---- tickTime=2000 -dataDir=c:/sw/zookeeperdata/3 +dataDir=/var/lib/zookeeperdata/3 clientPort=2183 initLimit=5 syncLimit=2