diff --git a/docs/nightly/en/getting-started/installation/greptimedb-cluster.md b/docs/nightly/en/getting-started/installation/greptimedb-cluster.md index c18160c43..5bfc1a483 100644 --- a/docs/nightly/en/getting-started/installation/greptimedb-cluster.md +++ b/docs/nightly/en/getting-started/installation/greptimedb-cluster.md @@ -65,8 +65,7 @@ kubectl port-forward svc/mycluster-frontend \ 4000:4000 \ 4001:4001 \ 4002:4002 \ - 4003:4003 \ - 4242:4242 + 4003:4003 ``` ## Next Steps diff --git a/docs/nightly/en/getting-started/installation/greptimedb-standalone.md b/docs/nightly/en/getting-started/installation/greptimedb-standalone.md index d9c008ef7..da81cbec2 100644 --- a/docs/nightly/en/getting-started/installation/greptimedb-standalone.md +++ b/docs/nightly/en/getting-started/installation/greptimedb-standalone.md @@ -41,7 +41,7 @@ Make sure the [Docker](https://www.docker.com/) is already installed. If not, yo ```shell docker run -p 4000-4003:4000-4003 \ --p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ +-v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ @@ -63,7 +63,7 @@ You can: ```shell docker run --security-opt seccomp=unconfined -p 4000-4003:4000-4003 \ - -p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ + -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ diff --git a/docs/nightly/en/user-guide/operations/remote-wal/quick-start.md b/docs/nightly/en/user-guide/operations/remote-wal/quick-start.md index d9de28595..1b0808db6 100644 --- a/docs/nightly/en/user-guide/operations/remote-wal/quick-start.md +++ b/docs/nightly/en/user-guide/operations/remote-wal/quick-start.md @@ -50,7 +50,7 @@ Use the Kafka wal provider to start the standalone GreptimeDB: ``` docker run \ --network greptimedb-remote-wal \ - -p 4000-4003:4000-4003 -p 4242:4242 \ + -p 4000-4003:4000-4003 \ -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptimedb --rm \ -e GREPTIMEDB_STANDALONE__WAL__PROVIDER="kafka" \ diff --git a/docs/nightly/zh/getting-started/installation/greptimedb-cluster.md b/docs/nightly/zh/getting-started/installation/greptimedb-cluster.md index 78a56222d..32ee53517 100644 --- a/docs/nightly/zh/getting-started/installation/greptimedb-cluster.md +++ b/docs/nightly/zh/getting-started/installation/greptimedb-cluster.md @@ -63,8 +63,7 @@ kubectl port-forward svc/mycluster-frontend \ 4000:4000 \ 4001:4001 \ 4002:4002 \ -4003:4003 \ -4242:4242 +4003:4003 ``` ## 下一步 diff --git a/docs/nightly/zh/getting-started/installation/greptimedb-standalone.md b/docs/nightly/zh/getting-started/installation/greptimedb-standalone.md index edc60b7d9..6c4ba851e 100644 --- a/docs/nightly/zh/getting-started/installation/greptimedb-standalone.md +++ b/docs/nightly/zh/getting-started/installation/greptimedb-standalone.md @@ -43,7 +43,7 @@ curl -fsSL \ ```shell docker run -p 4000-4003:4000-4003 \ --p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ +-v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ @@ -66,7 +66,7 @@ greptime/greptimedb:<%greptimedb-version%> standalone start \ ```shell docker run --security-opt seccomp=unconfined -p 4000-4003:4000-4003 \ - -p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ + -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ diff --git a/docs/nightly/zh/user-guide/operations/remote-wal/quick-start.md b/docs/nightly/zh/user-guide/operations/remote-wal/quick-start.md index a435cb71b..b8e50079a 100644 --- a/docs/nightly/zh/user-guide/operations/remote-wal/quick-start.md +++ b/docs/nightly/zh/user-guide/operations/remote-wal/quick-start.md @@ -51,7 +51,7 @@ docker run \ ``` docker run \ --network greptimedb-remote-wal \ - -p 4000-4003:4000-4003 -p 4242:4242 \ + -p 4000-4003:4000-4003 \ -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptimedb --rm \ -e GREPTIMEDB_STANDALONE__WAL__PROVIDER="kafka" \ diff --git a/docs/v0.8/en/getting-started/installation/greptimedb-cluster.md b/docs/v0.8/en/getting-started/installation/greptimedb-cluster.md index c18160c43..5bfc1a483 100644 --- a/docs/v0.8/en/getting-started/installation/greptimedb-cluster.md +++ b/docs/v0.8/en/getting-started/installation/greptimedb-cluster.md @@ -65,8 +65,7 @@ kubectl port-forward svc/mycluster-frontend \ 4000:4000 \ 4001:4001 \ 4002:4002 \ - 4003:4003 \ - 4242:4242 + 4003:4003 ``` ## Next Steps diff --git a/docs/v0.8/en/getting-started/installation/greptimedb-standalone.md b/docs/v0.8/en/getting-started/installation/greptimedb-standalone.md index d9c008ef7..da81cbec2 100644 --- a/docs/v0.8/en/getting-started/installation/greptimedb-standalone.md +++ b/docs/v0.8/en/getting-started/installation/greptimedb-standalone.md @@ -41,7 +41,7 @@ Make sure the [Docker](https://www.docker.com/) is already installed. If not, yo ```shell docker run -p 4000-4003:4000-4003 \ --p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ +-v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ @@ -63,7 +63,7 @@ You can: ```shell docker run --security-opt seccomp=unconfined -p 4000-4003:4000-4003 \ - -p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ + -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ diff --git a/docs/v0.8/en/user-guide/operations/remote-wal/quick-start.md b/docs/v0.8/en/user-guide/operations/remote-wal/quick-start.md index d9de28595..1b0808db6 100644 --- a/docs/v0.8/en/user-guide/operations/remote-wal/quick-start.md +++ b/docs/v0.8/en/user-guide/operations/remote-wal/quick-start.md @@ -50,7 +50,7 @@ Use the Kafka wal provider to start the standalone GreptimeDB: ``` docker run \ --network greptimedb-remote-wal \ - -p 4000-4003:4000-4003 -p 4242:4242 \ + -p 4000-4003:4000-4003 \ -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptimedb --rm \ -e GREPTIMEDB_STANDALONE__WAL__PROVIDER="kafka" \ diff --git a/docs/v0.8/zh/getting-started/installation/greptimedb-cluster.md b/docs/v0.8/zh/getting-started/installation/greptimedb-cluster.md index 78a56222d..32ee53517 100644 --- a/docs/v0.8/zh/getting-started/installation/greptimedb-cluster.md +++ b/docs/v0.8/zh/getting-started/installation/greptimedb-cluster.md @@ -63,8 +63,7 @@ kubectl port-forward svc/mycluster-frontend \ 4000:4000 \ 4001:4001 \ 4002:4002 \ -4003:4003 \ -4242:4242 +4003:4003 ``` ## 下一步 diff --git a/docs/v0.8/zh/getting-started/installation/greptimedb-standalone.md b/docs/v0.8/zh/getting-started/installation/greptimedb-standalone.md index edc60b7d9..6c4ba851e 100644 --- a/docs/v0.8/zh/getting-started/installation/greptimedb-standalone.md +++ b/docs/v0.8/zh/getting-started/installation/greptimedb-standalone.md @@ -43,7 +43,7 @@ curl -fsSL \ ```shell docker run -p 4000-4003:4000-4003 \ --p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ +-v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ @@ -66,7 +66,7 @@ greptime/greptimedb:<%greptimedb-version%> standalone start \ ```shell docker run --security-opt seccomp=unconfined -p 4000-4003:4000-4003 \ - -p 4242:4242 -v "$(pwd)/greptimedb:/tmp/greptimedb" \ + -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptime --rm \ greptime/greptimedb:<%greptimedb-version%> standalone start \ --http-addr 0.0.0.0:4000 \ diff --git a/docs/v0.8/zh/user-guide/operations/remote-wal/quick-start.md b/docs/v0.8/zh/user-guide/operations/remote-wal/quick-start.md index a435cb71b..b8e50079a 100644 --- a/docs/v0.8/zh/user-guide/operations/remote-wal/quick-start.md +++ b/docs/v0.8/zh/user-guide/operations/remote-wal/quick-start.md @@ -51,7 +51,7 @@ docker run \ ``` docker run \ --network greptimedb-remote-wal \ - -p 4000-4003:4000-4003 -p 4242:4242 \ + -p 4000-4003:4000-4003 \ -v "$(pwd)/greptimedb:/tmp/greptimedb" \ --name greptimedb --rm \ -e GREPTIMEDB_STANDALONE__WAL__PROVIDER="kafka" \