mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-24 13:45:49 +00:00
2.0 KiB
2.0 KiB
Install on CentOS/Red Hat with yum
This page describes the recommended instructions for installing the latest stable version of rippled on CentOS 7 or Red Hat Enterprise Linux 7, using Ripple's yum repository.
These instructions install a binary that has been compiled by Ripple.
Prerequisites
Before you install rippled, you must meet the System Requirements.
Installation Steps
-
Install the Ripple RPM repository:
$ cat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo [ripple-stable] name=XRP Ledger Packages baseurl=https://repos.ripple.com/repos/rippled-rpm/stable/ enabled=1 gpgcheck=0 gpgkey=https://repos.ripple.com/repos/rippled-rpm/stable/repodata/repomd.xml.key repo_gpgcheck=1 REPOFILE -
Fetch the latest repo updates:
$ sudo yum -y update -
Install the new
rippledpackage:$ sudo yum install rippledVersion 1.3.1 does not require any changes to your config files (
rippled.cfgandvalidators.txt). This update procedure leaves your existing config files in place. -
Reload systemd unit files:
$ sudo systemctl daemon-reload -
Configure the
rippledservice to start on boot:$ sudo systemctl enable rippled.service -
Start the
rippledservice:$ sudo systemctl start rippled.service
Next Steps
{% include '_snippets/post-rippled-install.md' %}
See Also
- Update Automatically on Linux
- Install rippled on Ubuntu Linux (Pre-built binary for Ubuntu or Debian)
- Build and Run
rippledon Ubuntu (Compilerippledyourself on Ubuntu) - Build and Run
rippledon macOS (Compilerippledyourself on macOS) - Compilation instructions for other platforms