Verify Installation
This section covers common tasks performed after installing XReplicator, including verifying the installation, updating packages, and uninstalling components.
Verify Backup Server
sudo systemctl status backup-serverVerify the backup server is running before starting agents.
Verify Backup Agents
Linux: Agent Service
sudo systemctl status backup-agentA healthy service should show: active (running)
Verify Web UI (Optional)
Open http://localhost:3000 in your browser.
Check Installed Binary (Optional)
Ensure the xreplicator binary is available in the system path:
Linux: Check Path
which xreplicatorExpected output:
/usr/local/bin/xreplicatorUpdating Packages
Upgrade Backup Agents
Debian / Ubuntu
sudo dpkg -i backup-agent_VERSION_amd64.debUpgrade Backup Server
sudo dpkg -i backup-server_VERSION_amd64.debAlways back up your configuration files before upgrading.
Upgrade backup agents before upgrading the backup server.
Uninstalling Packages
Uninstall Backup Agents
Debian / Ubuntu
sudo systemctl stop backup-agent
sudo systemctl disable backup-agent
sudo dpkg -r backup-agentUninstall Backup Server
sudo systemctl stop backup-server
sudo systemctl disable backup-server
sudo dpkg -r backup-serverUninstalling removes services but does not delete backup repositories.
Last updated on