How to run R remotely

Running R on a remote computer is surprisingly easy
R
RStudio Server
Docker
Tailscale
tutorial
Author
Affiliation
Published

2022-12-03

I recently saw an interesting question on Mastodon: How can I run R remotely?

It’s often the case that we write code and manuscripts on computers that are not powerful enough to run complicated data analyses. Or maybe it is not possible for us to leave the computer running alone for a long time. Sometimes we’re lucky enough to have a powerful desktop computer somewhere that could run those tasks with much greater speed, but we either don’t like using them (maybe they have windows installed!) or we don’t have physical access to them. In those cases, we’d like to run R on the fast computer but also access it remotely from other computers. In this entry, I show how to create remote R sessions with ease using RStudio Server, Docker (optionally), and Tailscale.

In order to best solve this problem, we need to recognize two main scenarios:

  1. The laptop (or “slow” computer) and desktop (or “fast” computer) are on the same local network, or
  2. The laptop and desktop are not on the same local network.

We discuss these options in turn. The answers turn out to be very similar, but when the computers are not on the same network, the solution is just a wee bit more complicated.

What you need

These solutions work on Linux, MacOS, and even Windows operating systems. The slow and fast computers can have any combination of these.

You also need to use RStudio for the solutions discussed here. It turns out that doing this in VS Code can be even easier because of its superb remote session support. I’ll add the VS Code writeup later, once my transition from RStudio to VS Code is complete 😉.

The first thing you need to set up is an RStudio Server instance on the fast computer. If your fast computer is running Linux, this is trivial.

If your fast computer has either MacOS or Windows, you will need to set up the RStudio Server instance using Docker. This is really easy, and we begin here.

RStudio Server

We are first going to install RStudio Server on the fast computer. You cannot run RStudio Server on MacOS or Windows, but we can easily fire one up using Docker. First, using your fast computer, head over to the Docker website and download the Docker desktop app. Then start it and make sure it is running (you will have a menu bar or taskbar Docker button to indicate that it’s running).

Then start a terminal session, and use it to start a rocker/rstudio container:

Note

The rocker images don’t yet work on M1 Macs. If you, like me, are using an M1 Mac, you can replace rocker/rstudio with amoselb/rstudio-m1.

docker run --rm -ti -v "$(pwd)"/work:/home/rstudio -e PASSWORD=yourpassword -p 8787:8787 rocker/rstudio

This creates a directory in your current working directory called work, and lets the Docker container access files therein (inside the container, the path is /home/rstudio where RStudio Server sessions typically start). This way whatever files you save inside Docker will remain in your disk, and you can use / edit those outside the container as well. (Thanks Kristoffer for pointing this critical point to me!)

Now your fast computer is running an RStudio Server session. You can verify this by opening a browser tab on the fast computer, and typing localhost:8787 in the address bar. You should see the RStudio Server login window pop up (Figure 1).

RStudio Server login window.
Figure 1: RStudio Server login window.

Then use rstudio as the Username, and yourpassword as the password. You’ll then have a fully functioning RStudio session in your browser (Figure 2).

RStudio Server.
Figure 2: RStudio Server–RStudio in the browser!.

Notice how it runs on Ubuntu, although my computer is an M1 Mac. Pretty cool, huh.

Ok, so how do we connect to this from other computers. We might now either want to connect from another computer on the same network, or on another network. Let’s start with the first.

Computers on the same local network

This is pretty easy! First, find your fast computer’s local IP address. There’s many ways to find this and you could for example query it in the terminal:

ipconfig getifaddr en0

Your local IP address will be something like 192.168.0.123. My fast computer currently runs on 192.168.0.155, and I’ll use it below.

Fire up a browser in your slow computer, and navigate to 192.168.0.155:8787. I’m using my phone as the slow computer here, and after logging in with the same credentials as above, I see Figure 3.

RStudio remote session on my phone.
Figure 3: RStudio remote session on my phone.

It really isn’t more difficult than that.

Computers on different networks

OK, so you still have RStudio Server running on your fast computer, but maybe it’s at work and you are now at home with your slow computer and a cold beer. How to connect? There’s many ways to do this, but here we will use Tailscale.

First, create a Tailscale account, and then install it on both computers. (OK so I guess you still need to be physically near both machines at this point 😄. [Unless you already have e.g. SSH access to the fast computer, in which case you can install Tailscale in the terminal.]) Make sure Tailscale is running on both and that they are signed in to the same Tailscale account. You can follow the official instructions. It really is quite easy and that’s why I use Tailscale and not some other SSH or VPN based solution.

Then, you can head to https://login.tailscale.com/admin/machines (on either computer). It will show you all the machines that you’ve connected to Tailscale (Figure 4), whether they are active or not.

Tailscale admin panel.
Figure 4: Tailscale admin panel.

Now you can connect between your computers wherever the machines might be, provided that they are connected to the internet and Tailscale. My fast computer’s Tailscale IP, redacted in Figure 4, is xxx.xxx.x.xx. So now I go home with my slow computer, and then use the browser to connect to xxx.xxx.x.xx:8787, and I see Figure 3 again.

I can then use RStudio (server) running on my fast computer on any of my other computers (as clients), by using the Tailscale IP address.

Conclusion

If it is possible for you to have a powerful computer always connected to the internet, you can make a persistent RStudio computing platform out of it with RStudio Server. You can then use Tailscale to connect to it very easily from anywhere in the world.

I hope that was as helpful to you as it has been for me 😄. If something didn’t work for you, comments are open below.

Reuse

Citation

BibTeX citation:
@online{vuorre2022,
  author = {Vuorre, Matti},
  title = {How to Run {R} Remotely},
  date = {2022-12-03},
  url = {https://vuorre.com/posts/remote-r},
  langid = {en}
}
For attribution, please cite this work as:
Vuorre, Matti. 2022. “How to Run R Remotely.” December 3, 2022. https://vuorre.com/posts/remote-r.