mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-18 02:35:49 +00:00
3.2 KiB
3.2 KiB
html, parent, seo, labels
| html | parent | seo | labels | |||
|---|---|---|---|---|---|---|
| install-rippled-on-centos-rhel-with-yum.html | install-rippled.html |
|
|
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:
Choose the appropriate RPM repository for the stability of releases you want:
stablefor the latest production release (masterbranch)unstablefor pre-release builds (releasebranch)nightlyfor experimental/development builds (developbranch)
{% tabs %}
cat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo [ripple-stable] name=XRP Ledger Packages enabled=1 gpgcheck=0 repo_gpgcheck=1 baseurl=https://repos.ripple.com/repos/rippled-rpm/stable/ gpgkey=https://repos.ripple.com/repos/rippled-rpm/stable/repodata/repomd.xml.key REPOFILEcat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo [ripple-unstable] name=XRP Ledger Packages enabled=1 gpgcheck=0 repo_gpgcheck=1 baseurl=https://repos.ripple.com/repos/rippled-rpm/unstable/ gpgkey=https://repos.ripple.com/repos/rippled-rpm/unstable/repodata/repomd.xml.key REPOFILEcat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo [ripple-nightly] name=XRP Ledger Packages enabled=1 gpgcheck=0 repo_gpgcheck=1 baseurl=https://repos.ripple.com/repos/rippled-rpm/nightly/ gpgkey=https://repos.ripple.com/repos/rippled-rpm/nightly/repodata/repomd.xml.key REPOFILE{% /tabs %}
-
Fetch the latest repo updates:
sudo yum -y update -
Install the new
rippledpackage:sudo yum install rippled -
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
{% partial file="/docs/_snippets/post-rippled-install.md" /%}
See Also
- Concepts:
- Tutorials:
- References:
- rippled API Reference
rippledCommandline Usage- [server_info method][]
- rippled API Reference
{% raw-partial file="/docs/_snippets/common-links.md" /%}