Hi! So I am part of a team that is working on the XRP Ledger in order to work with NFTs and cryptocurrency transactions. Part of this includes running a rippled server that can act as a validator which is necessary for our platform.
Currently, I am the only person on my team who has access to this rippled server because I configured it on my computer. However, I would like for the rest of my team to access this server via a droplet. Ideally, what should be happening is that any one of my team members can just ssh into the Droplet, run the rippled server on their own computer and start using the validators.
However, I am running into a dead-end. There is almost no literature on the internet about how to do this, and I am not entirely sure how I would “upload” my own private rippled server to a Droplet.
The only thing I can think of is to download and configure a NEW rippled server on the Droplet itself. However there are two issues with this:
Is there anything I can do? (How can I upload a private server from my computer onto the droplet so that everyone else on my team can use it?)
Thank you.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
Uploading the server directly is most likely not doable due to the different operating systems.
What you could do is to set up the server from scratch on your Ubuntu Droplet as per the official instructions here:
https://xrpl.org/install-rippled-on-ubuntu.html
Once you have the service installed, you could follow the steps here on how to configure a private server here:
https://xrpl.org/configure-a-private-server.html
Once you have this configured, I would also recommend adding a firewall as per the instructions here:
https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-18-04
Hope that this helps. Regards, Bobby