You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ab...@apache.org on 2017/07/03 11:58:07 UTC

[27/58] [abbrv] lucene-solr:jira/solr-10879: minor doc change for chroot in CDCR

minor doc change for chroot in CDCR


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/d0c86d07
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/d0c86d07
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/d0c86d07

Branch: refs/heads/jira/solr-10879
Commit: d0c86d078e8dab4c4ea8e5b19fa33f4fd648d8c3
Parents: c98e2a5
Author: Erick Erickson <er...@apache.org>
Authored: Wed Jun 28 19:31:37 2017 -0700
Committer: Erick Erickson <er...@apache.org>
Committed: Wed Jun 28 19:31:37 2017 -0700

----------------------------------------------------------------------
 .../solr-ref-guide/src/cross-data-center-replication-cdcr.adoc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d0c86d07/solr/solr-ref-guide/src/cross-data-center-replication-cdcr.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/cross-data-center-replication-cdcr.adoc b/solr/solr-ref-guide/src/cross-data-center-replication-cdcr.adoc
index 6772955..bffa71f 100644
--- a/solr/solr-ref-guide/src/cross-data-center-replication-cdcr.adoc
+++ b/solr/solr-ref-guide/src/cross-data-center-replication-cdcr.adoc
@@ -181,7 +181,11 @@ Here is a sample of a source configuration file, a section in `solrconfig.xml`.
 ----
 <requestHandler name="/cdcr" class="solr.CdcrRequestHandler">
   <lst name="replica">
-    <str name="zkHost">10.240.18.211:2181</str>
+    <str name="zkHost">10.240.18.211:2181,10.240.18.212:2181</str>
+    <!--
+    If you have chrooted your Solr information at the target you must include the chroot, for example:
+    <str name="zkHost">10.240.18.211:2181,10.240.18.212:2181/solr</str>
+    -->
     <str name="source">collection1</str>
     <str name="target">collection1</str>
   </lst>