diff --git a/docs/deployment-modes.md b/docs/deployment-modes.md index 1ca6e99374d..0f0069d4e91 100644 --- a/docs/deployment-modes.md +++ b/docs/deployment-modes.md @@ -67,8 +67,8 @@ For local development, `clickhousectl` helps to install ClickHouse versions and # Install the CLI curl https://clickhouse.com/cli | sh -# Install the latest stable ClickHouse, set it as your default, and symlink the clickhouse binary onto your PATH -clickhousectl local use stable +# Install the latest ClickHouse, set it as your default, and symlink the clickhouse binary onto your PATH +clickhousectl local use latest clickhousectl local server start clickhousectl local client ``` diff --git a/docs/getting-started/install/_snippets/_cli_install.md b/docs/getting-started/install/_snippets/_cli_install.md index c2657d32908..efb72db1a50 100644 --- a/docs/getting-started/install/_snippets/_cli_install.md +++ b/docs/getting-started/install/_snippets/_cli_install.md @@ -15,10 +15,10 @@ A `chctl` alias is also created automatically for convenience. ## Install ClickHouse {#cli-install-clickhouse} -Install the latest stable version of ClickHouse and make it your default: +Install the latest version of ClickHouse and make it your default: ```bash -clickhousectl local use stable +clickhousectl local use latest ``` `local use` installs the version if it isn't already present, sets it as your @@ -29,9 +29,8 @@ that runs a `clickhouse` command then works as-is. You can also select a specific version: ```bash -clickhousectl local use lts # Latest LTS release -clickhousectl local use 25.6 # Latest 25.6.x.x -clickhousectl local use 25.6.1.1 # Exact version +clickhousectl local use 26.5 # Latest 26.5.x.x +clickhousectl local use 26.5.2.39 # Exact version ``` :::note[Use vs install] diff --git a/docs/getting-started/quick-start/oss.mdx b/docs/getting-started/quick-start/oss.mdx index c7457b566fc..50b5deb20b3 100644 --- a/docs/getting-started/quick-start/oss.mdx +++ b/docs/getting-started/quick-start/oss.mdx @@ -56,10 +56,10 @@ plain-binary workflow. ClickHouse runs natively on Linux and macOS, and runs on Windows via the [WSL](https://learn.microsoft.com/en-us/windows/wsl/about). -Use the CLI to install the latest stable version of ClickHouse and make it your default: +Use the CLI to install the latest version of ClickHouse and make it your default: ```bash -clickhousectl local use stable +clickhousectl local use latest ``` `local use` installs the version if it isn't already present, sets it as your