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

lhotari pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 5d6ce2c784af fix(docs): correct tar command in Pulsar Manager 
installation guide (#977)
5d6ce2c784af is described below

commit 5d6ce2c784afa8856d1af10ef84973173d5b23f2
Author: Alice-sky <[email protected]>
AuthorDate: Tue Jan 7 15:37:26 2025 +0800

    fix(docs): correct tar command in Pulsar Manager installation guide (#977)
    
    * correct tar command in Pulsar Manager installation guide
    
    * updated the installation guide to reflect the latest Pulsar Manager 
version 0.4.0
    
    * Apply doc changes to supported versions in versioned_docs
    
    ---------
    
    Co-authored-by: Alice <[email protected]>
    Co-authored-by: Lari Hotari <[email protected]>
---
 docs/administration-pulsar-manager.md                      | 14 +++++++-------
 .../version-3.0.x/administration-pulsar-manager.md         | 14 +++++++-------
 .../version-4.0.x/administration-pulsar-manager.md         | 14 +++++++-------
 3 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/docs/administration-pulsar-manager.md 
b/docs/administration-pulsar-manager.md
index 5661020da4ee..d931c21d91ea 100644
--- a/docs/administration-pulsar-manager.md
+++ b/docs/administration-pulsar-manager.md
@@ -47,12 +47,12 @@ spring.datasource.password=postgres
 3. Add a configuration mount and start with a docker image.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
     -p 9527:9527 -p 7750:7750 \
     -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
     -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-    apachepulsar/pulsar-manager:v0.3.0
+    apachepulsar/pulsar-manager:v0.4.0
 ```
 
 #### Enable JWT authentication (optional)
@@ -81,13 +81,13 @@ For more information, see [Token Authentication Admin of 
Pulsar](security-token-
 Docker command to add profile and key files mount.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
   -p 9527:9527 -p 7750:7750 \
   -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
   -v /your-path/private.key:/pulsar-manager/private.key
   -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-  apachepulsar/pulsar-manager:v0.3.0
+  apachepulsar/pulsar-manager:v0.4.0
 ```
 
 ### 3. Set the administrator account and password
@@ -134,15 +134,15 @@ When using binary packages for direct deployment, you can 
follow these steps.
 - Download and unzip the binary package, which is available on the [Pulsar 
Download](/download/) page.
 
   ```bash
-       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.3.0/apache-pulsar-manager-0.3.0-bin.tar.gz
-       tar -zxvf apache-pulsar-manager-0.3.0-bin.tar.gz
+       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.4.0/apache-pulsar-manager-0.4.0-bin.tar.gz
+       tar -zxvf apache-pulsar-manager-0.4.0-bin.tar.gz
   ```
 
 - Extract the back-end service binary package and place the front-end 
resources in the back-end service directory.
 
   ```bash
        cd pulsar-manager
-       tar -zxvf pulsar-manager.tar
+       tar -xvf pulsar-manager.tar
        cd pulsar-manager
        cp -r ../dist ui
   ```
diff --git a/versioned_docs/version-3.0.x/administration-pulsar-manager.md 
b/versioned_docs/version-3.0.x/administration-pulsar-manager.md
index 55a8e553fabd..18db04e8f806 100644
--- a/versioned_docs/version-3.0.x/administration-pulsar-manager.md
+++ b/versioned_docs/version-3.0.x/administration-pulsar-manager.md
@@ -42,12 +42,12 @@ spring.datasource.password=postgres
 3. Add a configuration mount and start with a docker image.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
     -p 9527:9527 -p 7750:7750 \
     -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
     -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-    apachepulsar/pulsar-manager:v0.3.0
+    apachepulsar/pulsar-manager:v0.4.0
 ```
 
 ####  Enable JWT authentication (optional)
@@ -76,13 +76,13 @@ For more information, see [Token Authentication Admin of 
Pulsar](security-token-
 Docker command to add profile and key files mount.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
   -p 9527:9527 -p 7750:7750 \
   -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
   -v /your-path/private.key:/pulsar-manager/private.key
   -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-  apachepulsar/pulsar-manager:v0.3.0
+  apachepulsar/pulsar-manager:v0.4.0
 ```
 
 ### Set the administrator account and password
@@ -126,15 +126,15 @@ When using binary packages for direct deployment, you can 
follow these steps.
 - Download and unzip the binary package, which is available on the [Pulsar 
Download](/download/) page.
 
   ```bash
-       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.3.0/apache-pulsar-manager-0.3.0-bin.tar.gz
-       tar -zxvf apache-pulsar-manager-0.3.0-bin.tar.gz
+       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.4.0/apache-pulsar-manager-0.4.0-bin.tar.gz
+       tar -zxvf apache-pulsar-manager-0.4.0-bin.tar.gz
   ```
 
 - Extract the back-end service binary package and place the front-end 
resources in the back-end service directory.
 
   ```bash
        cd pulsar-manager
-       tar -zxvf pulsar-manager.tar
+       tar -xvf pulsar-manager.tar
        cd pulsar-manager
        cp -r ../dist ui
   ```
diff --git a/versioned_docs/version-4.0.x/administration-pulsar-manager.md 
b/versioned_docs/version-4.0.x/administration-pulsar-manager.md
index 5661020da4ee..d931c21d91ea 100644
--- a/versioned_docs/version-4.0.x/administration-pulsar-manager.md
+++ b/versioned_docs/version-4.0.x/administration-pulsar-manager.md
@@ -47,12 +47,12 @@ spring.datasource.password=postgres
 3. Add a configuration mount and start with a docker image.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
     -p 9527:9527 -p 7750:7750 \
     -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
     -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-    apachepulsar/pulsar-manager:v0.3.0
+    apachepulsar/pulsar-manager:v0.4.0
 ```
 
 #### Enable JWT authentication (optional)
@@ -81,13 +81,13 @@ For more information, see [Token Authentication Admin of 
Pulsar](security-token-
 Docker command to add profile and key files mount.
 
 ```bash
-docker pull apachepulsar/pulsar-manager:v0.3.0
+docker pull apachepulsar/pulsar-manager:v0.4.0
 docker run -it \
   -p 9527:9527 -p 7750:7750 \
   -v 
/your-path/application.properties:/pulsar-manager/pulsar-manager/application.properties
   -v /your-path/private.key:/pulsar-manager/private.key
   -e 
SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties 
\
-  apachepulsar/pulsar-manager:v0.3.0
+  apachepulsar/pulsar-manager:v0.4.0
 ```
 
 ### 3. Set the administrator account and password
@@ -134,15 +134,15 @@ When using binary packages for direct deployment, you can 
follow these steps.
 - Download and unzip the binary package, which is available on the [Pulsar 
Download](/download/) page.
 
   ```bash
-       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.3.0/apache-pulsar-manager-0.3.0-bin.tar.gz
-       tar -zxvf apache-pulsar-manager-0.3.0-bin.tar.gz
+       wget 
https://dist.apache.org/repos/dist/release/pulsar/pulsar-manager/pulsar-manager-0.4.0/apache-pulsar-manager-0.4.0-bin.tar.gz
+       tar -zxvf apache-pulsar-manager-0.4.0-bin.tar.gz
   ```
 
 - Extract the back-end service binary package and place the front-end 
resources in the back-end service directory.
 
   ```bash
        cd pulsar-manager
-       tar -zxvf pulsar-manager.tar
+       tar -xvf pulsar-manager.tar
        cd pulsar-manager
        cp -r ../dist ui
   ```

Reply via email to