karthik sl17
karthik sl17

Reputation: 19

How to do the SET-UP for the XRP RIPPLED node in Exchange linux

What How to SETUP XRP RIPPLED in Linux.I am new to this please help me from scratch.with referral link

Upvotes: 0

Views: 336

Answers (1)

Monarth Sarvaiya
Monarth Sarvaiya

Reputation: 1126

Make sure that your computer meets the minimum system requirements.

You can get direct build by installation, you can refer this link.

  1. Update repositories:

    $ sudo apt -y update

  2. Install utilities:

    $ sudo apt -y install apt-transport-https ca-certificates wget gnupg

  3. Add Ripple's package-signing GPG key to your list of trusted keys:

    $ wget -q -O - "https://repos.ripple.com/repos/api/gpg/key/public" | \
      sudo apt-key add -
    
  4. Fetch the Ripple repository.

    $ sudo apt -y update

  5. Install the rippled software package:

    $ sudo apt -y install rippled

  6. Check the status of the rippled service:

    $ systemctl status rippled.service

  7. The rippled service should start automatically. If not, you can start it manually:

    $ sudo systemctl start rippled.service

  8. To configure it to start automatically on boot:

    $ sudo systemctl enable rippled.service

Or You can make your own rippled build for linux, for that you can use this link.

Note: Make sure that first you have to install boost having version 1.70.0, otherwise you may not able to build it. (for manual build only)

Upvotes: 0

Related Questions