Skip to content
Merged
Show file tree
Hide file tree
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
40 changes: 40 additions & 0 deletions docs/install/tarball.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Download {{pcsm.full_name}} from Percona website

You can download {{pcsm.full_name}} from [Percona website :octicons-link-external-16:](https://www.percona.com/downloads/percona-clustersync-mongodb/) and install it:

* [From binary tarballs](#install-from-binary-tarballs). Tarballs only for x86_64 architecture are available.
* Manually, from the installation packages using `dpkg` (Debian and Ubuntu) or `rpm` (Red Hat Enterprise Linux and derivative). However, you must make sure that all dependencies are satisfied.

Check notice on line 6 in docs/install/tarball.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/install/tarball.md#L6

[Google.Parens] Use parentheses judiciously.
Raw output
{"message": "[Google.Parens] Use parentheses judiciously.", "location": {"path": "docs/install/tarball.md", "range": {"start": {"line": 6, "column": 1}}}, "severity": "INFO"}

Check notice on line 6 in docs/install/tarball.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/install/tarball.md#L6

[Google.Passive] In general, use active voice instead of passive voice ('are satisfied').
Raw output
{"message": "[Google.Passive] In general, use active voice instead of passive voice ('are satisfied').", "location": {"path": "docs/install/tarball.md", "range": {"start": {"line": 6, "column": 179}}}, "severity": "INFO"}


## Before you start

Check the [system requirements](../system-requirements.md) and [supported MongoDB versions](../deployment.md).

## Install from binary tarballs

Find the link to the binary tarballs under the **Generic Linux** menu item on [Percona website :octicons-link-external-16:](https://www.percona.com/downloads/percona-clustersync-mongodb/).
{.power-number}

1. Fetch the binary tarball. Replace the version in the URL with your required version.
Comment on lines +16 to +18
Copy link

Copilot AI Dec 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The '.power-number' class is applied outside of any list context. This styling directive should be removed or placed immediately after the numbered list item it's intended to style (line 18).

Suggested change
{.power-number}
1. Fetch the binary tarball. Replace the version in the URL with your required version.
1. Fetch the binary tarball. Replace the version in the URL with your required version.
{.power-number}

Copilot uses AI. Check for mistakes.

```bash
wget https://downloads.percona.com/downloads/percona-clustersync-mongodb/percona-clustersync-mongodb-{{release}}/binary/tarball/percona-clustersync-mongodb-{{release}}-x86_64.tar.gz
```

2. Extract the tarball

```bash
tar -xf percona-clustersync-mongodb-{{release}}-x86_64.tar.gz
```

3. Export the location of the binaries to the `PATH` variable

For example, if you’ve extracted the tarball to your `home` directory, the command would be the following:

```bash
export PATH=~/percona-clustersync-mongodb-{{release}}/:$PATH
```

## Next steps

[Configure authentication :material-arrow-right:](authentication.md){.md-button}
6 changes: 6 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ We recommend installing PLM via the package manager of your operating system for

[Build from source :material-arrow-right:](install/source.md){.md-button}

=== ":octicons-download-16: Manual download"

If you need to install {{pcsm.short}} offline or prefer a specific version of it, check out the link below for a step-by-step guide and get access to the downloads directory.

[Install from tarballs :material-arrow-right:](install/tarball.md){.md-button}

## Next steps

[Use {{plm.full_name}} :material-arrow-right:](install/usage.md){.md-button}
Expand Down
1 change: 1 addition & 0 deletions mkdocs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ nav:
- 1. Install:
- From repositories: install/repos.md
- Build from source: install/source.md
- From binary tarballs: install/tarball.md
- 2. Configure authentication: install/authentication.md
- 3. Start PLM: install/start-plm.md
- install/parameters.md
Expand Down