replication-manager is a self-contained binary without dependencies that works on most platforms. Builds are tested for Linux, FreeBSD, and macOS. Binaries are provided for multiple architectures (x86_64, ARM64).
Packages are provided for Debian/Ubuntu and CentOS/RHEL and derivatives.
The current stable version is 3.1. Check GitHub Releases for the latest release or review the changelog for version history.
Development builds are available on the Continuous Integration Server
Install the embedded binary with a single command:
curl -fsSL https://signal18.io/get-repman | bash
Features:
Supported Platforms:
Environment Variables:
| Variable | Description | Default |
|---|---|---|
REPMAN_VERSION |
Specific version to install | latest |
REPMAN_INSTALL_DIR |
Custom installation directory | /usr/local/bin or ~/.local/bin |
REPMAN_INSTALL_CLI |
Install CLI client alongside server | false |
REPMAN_SKIP_VERIFY |
Skip post-installation verification | false |
Examples:
Install with sudo (system-wide installation):
curl -fsSL https://signal18.io/get-repman | sudo bash
Install specific version:
curl -fsSL https://signal18.io/get-repman | REPMAN_VERSION=v3.1.16 bash
Install server + CLI client:
curl -fsSL https://signal18.io/get-repman | REPMAN_INSTALL_CLI=true bash
Custom installation directory:
curl -fsSL https://signal18.io/get-repman | REPMAN_INSTALL_DIR=/opt/repman bash
replication-manager uses a client-server architecture with multiple binary flavors based on included features.
The server monitoring daemon is available in different flavors: replication-manager-osc, replication-manager-tst, replication-manager-pro, replication-manager-arb, and replication-manager (embedded).
The command-line client binary replication-manager-cli sends requests to the monitoring daemon via a secured protocol.
replication-manager-cli is bundled with server packages but can be installed independently.
| Package | Flavor | Description |
|---|---|---|
| replication-manager-osc | Open Source | All features except provisioning (recommended) |
| replication-manager-tst | Test | OSC features plus testing tools (local bootstrap, benchmarking) |
| replication-manager-pro | Provisioning | Commercial cluster provisioning solution |
| replication-manager-arb | Arbitrator | Arbitration for replication-manager clustering |
| replication-manager | Embedded | Standalone binary with embedded web dashboard and all assets |
replication-manager provides three binary distribution types:
Regular Binaries (package installations):
/etc/, /usr/share/, /var/lib/)Basedir Variants (tarball distributions):
-basedir (e.g., replication-manager-osc-basedir)/usr/local/replication-manager/Embedded Binary (replication-manager without suffix):
All binary variants are available on the GitHub Releases page.
Available artifacts:
replication-manager-{flavor}-{version}.tar.gz - Tarball distributions (basedir variants)replication-manager-{flavor}-{version}.{arch}.rpm - RPM packagesreplication-manager-{flavor}_{version}_{arch}.deb - Debian packagesreplication-manager-{version}.{arch} - Embedded binary with dashboardreplication-manager-cli-{version} - Standalone CLI binarysbom-{version}.json - Software Bill of Materials (CycloneDX format)Replace {flavor} with: osc, tst, pro, or arb
Replace {version} with the release version
Replace {arch} with your architecture (e.g., x86_64, amd64, arm64)
Upgrading from 2.x?: Version 3.x introduced configuration file location changes and parameter renames. See the Migration Guide for deprecated parameters and upgrade procedures.
Configure the repository:
cat>/etc/yum.repos.d/signal18.repo <<'EOL'
[signal18]
name=Signal18 repositories
baseurl=http://repo.signal18.io/centos/${releasever}/${basearch}/3.1/
gpgcheck=0
enabled=1
EOL
Install the package:
yum install replication-manager-osc
Upgrading from 2.x with epoch conflict:
If upgrading from 2.x and encountering this error:
file /usr/bin/replication-manager-cli from install of replication-manager-client-3.1.xx-1.x86_64 conflicts with file from package replication-manager-pro-1730721861:2.3.53-1.x86_64
This occurs due to epoch removal in 3.x packages. Resolve by:
/var/lib/replication-manager/ and /etc/replication-manager/sudo dnf clean metadata --disablerepo="*" --enablerepo=signal18Configure the repository, install the GPG key, and install the package:
# Set version (3.1 is current stable)
version="3.1"
# Import GPG key
gpg --recv-keys --keyserver keyserver.ubuntu.com FAE20E50
gpg --export FAE20E50 > /etc/apt/trusted.gpg.d/signal18.gpg
# Add repository
echo "deb [signed-by=/etc/apt/trusted.gpg.d/signal18.gpg] http://repo.signal18.io/deb $(lsb_release -sc) $version" > /etc/apt/sources.list.d/signal18.list
# Install package
apt-get update
apt-get install replication-manager-osc
Tarball distributions use basedir variants with embedded static assets. Download the archive from GitHub Releases.
Unpack the tarball:
sudo tar zxvf replication-manager-osc-{version}.tar.gz -C /usr/local/
Create a symlink:
sudo ln -s /usr/local/replication-manager-osc-{version} /usr/local/replication-manager
Copy the systemd or init files:
sudo cp /usr/local/replication-manager/share/replication-manager.init /etc/init.d/replication-manager
Building from source requires Go 1.24.6 or later.
Clone the repository and build:
git clone https://github.com/signal18/replication-manager.git ~/go/src/github.com/signal18/replication-manager
cd ~/go/src/github.com/signal18/replication-manager
make bin
This builds all binary variants.
Build specific flavors:
make osc # Open source core
make pro # Production version
make tst # Test version
make arb # Arbitrator
make cli # CLI client only
Build packages:
make package
Proceed with the configuration step