You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2023/05/08 13:44:52 UTC

[solr] branch branch_9_2 updated: Ref-guide tutorial-aws.adoc link fix (#1591)

This is an automated email from the ASF dual-hosted git repository.

houston pushed a commit to branch branch_9_2
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_2 by this push:
     new 305393de6e2 Ref-guide tutorial-aws.adoc link fix (#1591)
305393de6e2 is described below

commit 305393de6e2c53baed9caab315c8235a9c978e35
Author: Tomasz Skowron <to...@gmail.com>
AuthorDate: Thu Apr 27 09:31:47 2023 +0200

    Ref-guide tutorial-aws.adoc link fix (#1591)
---
 .../modules/getting-started/pages/tutorial-aws.adoc               | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-aws.adoc b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-aws.adoc
index 4a7d7bdee4a..a52beef1e35 100644
--- a/solr/solr-ref-guide/modules/getting-started/pages/tutorial-aws.adoc
+++ b/solr/solr-ref-guide/modules/getting-started/pages/tutorial-aws.adoc
@@ -231,9 +231,9 @@ On the node you're using to host ZooKeeper (`zookeeper-node`), download the pack
 [source,bash,subs="attributes"]
 ----
 # download stable version of ZooKeeper, here {dep-version-zookeeper}
-$ wget https://archive.apache.org/dist/zookeeper/zookeeper-{dep-version-zookeeper}/zookeeper-{dep-version-zookeeper}.tar.gz
+$ wget https://archive.apache.org/dist/zookeeper/zookeeper-{dep-version-zookeeper}/apache-zookeeper-{dep-version-zookeeper}.tar.gz
 # untar
-$ tar -zxvf zookeeper-{dep-version-zookeeper}.tar.gz
+$ tar -zxvf apache-zookeeper-{dep-version-zookeeper}.tar.gz
 ----
 +
 Add an environment variable for ZooKeeper's home directory (`ZOO_HOME`) to the `.bashrc` for the user who will be running the process.
@@ -242,10 +242,10 @@ Correct the path to the ZooKeeper installation as appropriate if where you put i
 +
 [source,bash,subs="attributes"]
 ----
-$ export ZOO_HOME=$PWD/zookeeper-{dep-version-zookeeper}
+$ export ZOO_HOME=$PWD/apache-zookeeper-{dep-version-zookeeper}
 # put the env variable in .bashrc
 # vim ~/.bashrc
-export ZOO_HOME=/home/ec2-user/zookeeper-{dep-version-zookeeper}
+export ZOO_HOME=/home/ec2-user/apache-zookeeper-{dep-version-zookeeper}
 ----
 . Change directories to `ZOO_HOME`, and create the ZooKeeper configuration by using the template provided by ZooKeeper.
 +