mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +00:00
1.5 KiB
1.5 KiB
Update rippled
You can subscribe to the rippled Google Group to receive notifications of new rippled releases.
Automatic Update on CentOS/Red Hat
Automatic rippled updates can be enabled with a one-time Cron configuration:
-
Check that
/opt/ripple/bin/update-rippled.shexists. If it does not, update manually. -
Install
crond:$ sudo yum install cronie -
Open the crontab file for editing
$ sudo crontab -e -
Add the following to the crontab file. Be sure to add a blank line at the end of the file.
RANDOM_DELAY=59 0 * * * * /opt/ripple/bin/update-rippled.sh
The script updates the installed rippled package within an hour of each new release.
Manual Update on CentOS/Red Hat
Run the following commands to update to the latest release of rippled:
$ sudo rpm -Uvh --replacepkgs https://mirrors.ripple.com/ripple-repo-el7.rpm
$ sudo yum update --enablerepo=ripple-stable rippled
$ sudo systemctl daemon-reload
$ sudo service rippled restart
Manual Update on Ubuntu
Run the following commands to update to the latest release of rippled:
$ sudo rpm -Uvh --replacepkgs https://mirrors.ripple.com/ripple-repo-el7.rpm
$ yumdownloader --enablerepo=ripple-stable --releasever=el7 rippled
$ rpm -K rippled*.rpm
$ sudo alien -i --scripts rippled*.rpm
$ sudo systemctl daemon-reload
$ sudo service rippled restart