From 52a9241232cb479343f79fe9ce83b11d080cf171 Mon Sep 17 00:00:00 2001 From: Cassandra Targett Date: Thu, 14 Feb 2019 15:35:10 -0600 Subject: [PATCH] Ref Guide: fix "cloud mode" to "SolrCloud mode" --- solr/solr-ref-guide/src/aws-solrcloud-tutorial.adoc | 2 +- solr/solr-ref-guide/src/getting-started-with-solrcloud.adoc | 2 +- solr/solr-ref-guide/src/implicit-requesthandlers.adoc | 2 +- solr/solr-ref-guide/src/installing-solr.adoc | 2 +- solr/solr-ref-guide/src/solr-control-script-reference.adoc | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/solr/solr-ref-guide/src/aws-solrcloud-tutorial.adoc b/solr/solr-ref-guide/src/aws-solrcloud-tutorial.adoc index 263164d1843..82976206475 100644 --- a/solr/solr-ref-guide/src/aws-solrcloud-tutorial.adoc +++ b/solr/solr-ref-guide/src/aws-solrcloud-tutorial.adoc @@ -29,7 +29,7 @@ In this guide we are going to: . Install, configure and start Solr on newly launched EC2 instances * Install system prerequisites: Java 1.8 and later * Download latest version of Solr -* Start the Solr nodes in cloud mode +* Start the Solr nodes in SolrCloud mode . Create a collection, index documents and query the system * Create collection with multiple shards and replicas * Index documents to the newly created collection diff --git a/solr/solr-ref-guide/src/getting-started-with-solrcloud.adoc b/solr/solr-ref-guide/src/getting-started-with-solrcloud.adoc index 36aff7d913c..7d66c70963d 100644 --- a/solr/solr-ref-guide/src/getting-started-with-solrcloud.adoc +++ b/solr/solr-ref-guide/src/getting-started-with-solrcloud.adoc @@ -35,7 +35,7 @@ This tutorial assumes that you're already familiar with the basics of using Solr === Interactive Startup -The `bin/solr` script makes it easy to get started with SolrCloud as it walks you through the process of launching Solr nodes in cloud mode and adding a collection. To get started, simply do: +The `bin/solr` script makes it easy to get started with SolrCloud as it walks you through the process of launching Solr nodes in SolrCloud mode and adding a collection. To get started, simply do: [source,bash] ---- diff --git a/solr/solr-ref-guide/src/implicit-requesthandlers.adoc b/solr/solr-ref-guide/src/implicit-requesthandlers.adoc index 6a3d1d90cd3..53b8e671bce 100644 --- a/solr/solr-ref-guide/src/implicit-requesthandlers.adoc +++ b/solr/solr-ref-guide/src/implicit-requesthandlers.adoc @@ -128,7 +128,7 @@ Threads:: Return info on all JVM threads. v2: `api/node/threads` |{solr-javadocs}/solr-core/org/apache/solr/handler/admin/ThreadDumpHandler.html[ThreadDumpHandler] |`_ADMIN_THREADS` |=== -Health:: Reporting the health of the node (_available only in Solrcloud mode_) +Health:: Reporting the health of the node (_available only in SolrCloud mode_) + [cols="3*.",frame=none,grid=cols,options="header"] |=== diff --git a/solr/solr-ref-guide/src/installing-solr.adoc b/solr/solr-ref-guide/src/installing-solr.adoc index 9e7b23a24e7..62d2c2742a3 100644 --- a/solr/solr-ref-guide/src/installing-solr.adoc +++ b/solr/solr-ref-guide/src/installing-solr.adoc @@ -154,7 +154,7 @@ bin/solr -e techproducts Currently, the available examples you can run are: techproducts, dih, schemaless, and cloud. See the section <> for details on each example. .Getting Started with SolrCloud -NOTE: Running the `cloud` example starts Solr in <> mode. For more information on starting Solr in cloud mode, see the section <>. +NOTE: Running the `cloud` example starts Solr in <> mode. For more information on starting Solr in SolrCloud mode, see the section <>. === Check if Solr is Running diff --git a/solr/solr-ref-guide/src/solr-control-script-reference.adoc b/solr/solr-ref-guide/src/solr-control-script-reference.adoc index a6f52e796a1..8e4014eb667 100644 --- a/solr/solr-ref-guide/src/solr-control-script-reference.adoc +++ b/solr/solr-ref-guide/src/solr-control-script-reference.adoc @@ -174,7 +174,7 @@ If you specify a ZooKeeper connection string, such as `-z 192.168.1.4:2181`, the NOTE: If you have defined `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` (see <>) you can omit `-z ` from all `bin/solr` commands. - When starting Solr in cloud mode, if you neither define `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` nor specify the `-z` option, then Solr will launch an embedded ZooKeeper server listening on the Solr port + 1000, i.e., if Solr is running on port 8983, then the embedded ZooKeeper will be listening on port 9983. + When starting Solr in SolrCloud mode, if you do not define `ZK_HOST` in `solr.in.sh`/`solr.in.cmd` nor specify the `-z` option, then Solr will launch an embedded ZooKeeper server listening on the Solr port + 1000, i.e., if Solr is running on port 8983, then the embedded ZooKeeper will be listening on port 9983. [IMPORTANT] ====