Run rippled on Windows using WSL
SchlaubiDev
Posted on November 10, 2023
Windows Subsystem for Linux (WSL) lets you install a Linux distribution (such as Ubuntu) and use Linux applications without the overhead of a traditional virtual machine or dualboot setup. This enables Windows users to install the XRP Ledger in their familiar Windows environment.
This guide documents how I did that on my Windows 10 machine.
TLDR
- Install WSL with Ubuntu 22 (https://learn.microsoft.com/en-us/windows/wsl/install)
- Install rippled on Ubuntu 22 (https://xrpl.org/install-rippled-on-ubuntu.html)
A little more detailed steps
First ensure your machine fulfills the system requirements. At the time of this writing rippled 1.12.0 runs stable as validator on an older physical computer from 2012 with the following specs:
- Intel I7-2600 2.4GHz
- 4x 8gb DDR3 RAM
- 240gb SSD (OCZ Agility 6GB/s)
- Network on-board (Asus P8Z68 DELUXE)
- Solid internet connection 600Mbit/s down, 60Mbit/s up
Microsoft provides a great guide how to install WSL and a few important commands. I performed the following steps:
- Start Windows Console
- Run
wsl --install
to install WSL on your Windows 10 (or later) machine - Run
wsl --install -d Ubuntu-22.04
to install Ubuntu 22 Linux. This may take a few minutes - After initial installation you need to specify a username and password for your newly installed Linux
- After installing Ubuntu-22 you're maybe directly logged in. Exit your session and close the terminal. This should prevent a possible error while installing rippled at step 3 ("Permission denied" at wget)
Your Ubuntu Linux is now installed and ready. Let's continue with installing rippled. An article on xrpl.org provides a detailed step by step guide what to do. I followed each step as mentioned in that article.
- Start Windows Console
- Run
wsl
to enter Linux command prompt - Follow the Installation Steps command by command
- At step 4 you must change the command. Adjust
focal
tojammy
due our previously installed Ubuntu Linux as mentioned in the installation guide - Ensure every command runs successfully and doesn't print any errors into your Console.
After rippled is successfully installed, you can run rippled server_info | grep server_state
. This shows current rippled server state. The initial network sync may take some minutes. The command shows "full" as soon as your server is fully caught-up with the network and could participate in validation, but is not doing so (because it has not been configured as a validator). If you plan to run your fresh node as validator you should follow the guide Run rippled as a Validator.
Congrats! You're now running rippled on your own machine 🎉
Helpful commands and resources
- Stop a running Linux instance: Run
wsl --shutdown
in a Windows Console - Linux "Task-Manager":
htop
. Ensure your machine provides enough RAM. - Basic commands for WSL
- Node Configurator assists you generating a rippled.cfg config for your node
Posted on November 10, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.