Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] [pulsar-manager] change version number from 0.2.0 to 0.3.0 #17633

Merged
merged 1 commit into from
Sep 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions site2/docs/administration-pulsar-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ If you are monitoring your current stats with Pulsar dashboard, we recommend you
The easiest way to use the Pulsar Manager is to run it inside a [Docker](https://www.docker.com/products/docker) container.

```shell
docker pull apachepulsar/pulsar-manager:v0.2.0
docker pull apachepulsar/pulsar-manager:v0.3.0
docker run -it \
-p 9527:9527 -p 7750:7750 \
-e SPRING_CONFIGURATION_FILE=/pulsar-manager/pulsar-manager/application.properties \
apachepulsar/pulsar-manager:v0.2.0
apachepulsar/pulsar-manager:v0.3.0
```

* Pulsar Manager is divided into front-end and back-end, the front-end service port is `9527` and the back-end service port is `7750`.
Expand All @@ -48,13 +48,13 @@ spring.datasource.password=postgres
3. Add a configuration mount and start with a docker image.

```bash
docker pull apachepulsar/pulsar-manager:v0.2.0
docker pull apachepulsar/pulsar-manager:v0.3.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.2.0
apachepulsar/pulsar-manager:v0.3.0
```

#### Enable JWT authentication (optional)
Expand Down Expand Up @@ -83,14 +83,14 @@ 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.2.0
docker pull apachepulsar/pulsar-manager:v0.3.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.2.0
apachepulsar/pulsar-manager:v0.3.0
```

### Set the administrator account and password
Expand Down Expand Up @@ -134,8 +134,8 @@ 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.2.0/apache-pulsar-manager-0.2.0-bin.tar.gz
tar -zxvf apache-pulsar-manager-0.2.0-bin.tar.gz
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
```

- Extract the back-end service binary package and place the front-end resources in the back-end service directory.
Expand Down