You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ct...@apache.org on 2017/12/04 21:29:53 UTC

lucene-solr:master: SOLR-11312: Add docs on how to stop Solr to README.txt

Repository: lucene-solr
Updated Branches:
  refs/heads/master b7d8731bb -> 0b4e9b2b3


SOLR-11312: Add docs on how to stop Solr to README.txt


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

Branch: refs/heads/master
Commit: 0b4e9b2b338154ba83bc9a15f3ade5df0f119e45
Parents: b7d8731
Author: Cassandra Targett <ct...@apache.org>
Authored: Mon Dec 4 15:28:20 2017 -0600
Committer: Cassandra Targett <ct...@apache.org>
Committed: Mon Dec 4 15:28:20 2017 -0600

----------------------------------------------------------------------
 solr/README.txt | 33 ++++++++++++++++++++-------------
 1 file changed, 20 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/0b4e9b2b/solr/README.txt
----------------------------------------------------------------------
diff --git a/solr/README.txt b/solr/README.txt
index 0de8b57..15e9b60 100644
--- a/solr/README.txt
+++ b/solr/README.txt
@@ -58,6 +58,13 @@ After starting Solr, direct your Web browser to the Solr Admin Console at:
 
   http://localhost:8983/solr/
 
+When finished with your Solr installation, shut it down by executing:
+
+  bin/solr stop -all
+
+The `-p PORT` option can also be used to identify the Solr instance to shutdown,
+where more than one Solr is running on the machine.
+
 
 Solr Examples
 ---------------
@@ -94,7 +101,7 @@ For more information about Solr examples please read...
 
 or linked from "docs/index.html" in a binary distribution.
 
-Also, there are Solr clients for many programming languages, see 
+Also, there are Solr clients for many programming languages, see
    http://wiki.apache.org/solr/IntegratingSolr
 
 
@@ -125,21 +132,21 @@ Instructions for Building Apache Solr from Source
 -------------------------------------------------
 
 1. Download the Java SE 8 JDK (Java Development Kit) or later from http://www.oracle.com/java/
-   You will need the JDK installed, and the $JAVA_HOME/bin (Windows: %JAVA_HOME%\bin) 
-   folder included on your command path. To test this, issue a "java -version" command 
+   You will need the JDK installed, and the $JAVA_HOME/bin (Windows: %JAVA_HOME%\bin)
+   folder included on your command path. To test this, issue a "java -version" command
    from your shell (command prompt) and verify that the Java version is 1.8 or later.
 
-2. Download the Apache Ant binary distribution (1.8.2+) from 
-   http://ant.apache.org/  You will need Ant installed and the $ANT_HOME/bin (Windows: 
-   %ANT_HOME%\bin) folder included on your command path. To test this, issue a 
-   "ant -version" command from your shell (command prompt) and verify that Ant is 
-   available. 
+2. Download the Apache Ant binary distribution (1.8.2+) from
+   http://ant.apache.org/  You will need Ant installed and the $ANT_HOME/bin (Windows:
+   %ANT_HOME%\bin) folder included on your command path. To test this, issue a
+   "ant -version" command from your shell (command prompt) and verify that Ant is
+   available.
 
-   You will also need to install Apache Ivy binary distribution (2.2.0) from 
-   http://ant.apache.org/ivy/ and place ivy-2.2.0.jar file in ~/.ant/lib -- if you skip 
+   You will also need to install Apache Ivy binary distribution (2.2.0) from
+   http://ant.apache.org/ivy/ and place ivy-2.2.0.jar file in ~/.ant/lib -- if you skip
    this step, the Solr build system will offer to do it for you.
 
-3. Download the Apache Solr distribution, linked from the above web site. 
+3. Download the Apache Solr distribution, linked from the above web site.
    Unzip the distribution to a folder of your choice, e.g. C:\solr or ~/solr
    Alternately, you can obtain a copy of the latest Apache Solr source code
    directly from the GIT repository:
@@ -148,8 +155,8 @@ Instructions for Building Apache Solr from Source
 
 4. Navigate to the "solr" folder and issue an "ant" command to see the available options
    for building, testing, and packaging Solr.
-  
-   NOTE: 
+
+   NOTE:
    To see Solr in action, you may want to use the "ant server" command to build
    and package Solr into the server directory. See also server/README.txt.