mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 20:25:51 +00:00
1.4 KiB
1.4 KiB
Install on Ubuntu with Alien
This page describes the recommended instructions for installing the latest stable version of rippled on Ubuntu Linux 16.04 or higher, using the Alien utility to install from 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 yum-utils and alien:
$ sudo apt-get update $ sudo apt-get install yum-utils alien -
Install the Ripple RPM repository:
$ sudo rpm -Uvh https://mirrors.ripple.com/ripple-repo-el7.rpm -
Download the
rippledsoftware package:$ yumdownloader --enablerepo=ripple-stable --releasever=el7 rippled -
Verify the signature on the
rippledsoftware package:$ sudo rpm --import https://mirrors.ripple.com/rpm/RPM-GPG-KEY-ripple-release && rpm -K rippled*.rpm -
Install the
rippledsoftware package:$ sudo alien -i --scripts rippled*.rpm && rm rippled*.rpm -
Configure the
rippledservice to start on system boot:$ sudo systemctl enable rippled.service -
Start the
rippledservice$ sudo systemctl start rippled.service
Next Steps
{% include '_snippets/post-rippled-install.md' %}