DEV Community

ZachiNachshon
ZachiNachshon

Posted on • Updated on • Originally published at blog.zachinachshon.com

Setting Up a Raspberry Pi Cluster

Credits: Logo created by raspberrypi.org

Installation instructions for setting up a local Raspberry Pi cluster at your home desk.

 

Note: For the time this post was published, there isn't an official Raspberry Pi OS image that supports a 64 bit system. There are beta versions but with limitations. This blog post won't cover them until officially released.

 

rpi-cluster-orig

 

Operating System on SD Card

  1. Connect the SD card to your local machine (laptop / desktop)

  2. Download Raspberry Pi OS Lite (Debian Buster) image from here

  3. Flash OS image using Raspberry Pi Imager as specified in here

  4. After flashing, eject and re-connect the SD card again to your local machine

  5. Check for boot connected device

  6. Mount the SD card

  7. Open a terminal session and create a text file named ssh in the boot partition

      # If you are working on macOS
      sudo touch /Volumes/boot/ssh
    
      # Other Unix-like operating system
      sudo touch <path-to-rpi-boot-volume>/ssh
    
  8. Eject the SD card and connect it to the Raspberry Pi


Network Setup

  1. Power up the RPi and connect directly to the home router
  2. Open the router network dashboard

    Note: Your router dashboard address might differ, check with your router manufacture guide.

  3. Verify under LAN settings -> Client List that there is a new raspberrypi client

  4. Assign a static IP address using this guide


RPi Configuration

  1. SSH into the server using ssh pi@<RPI-IP-ADDRESS> with an IP address from previous step and the default password raspberry
  2. Set the GPU memory split to 16MB by editing the RPi configuration file sudo vi /boot/config.txt and appending gpu_mem=16 to it

    Note: We specify the minimum memory possible to reserve for GPU (display) since we won’t require user interface.

  3. Reboot using sudo reboot for changes to take effect

  4. SSH again to the RPI server and type sudo raspi-config. Edit the following settings:

    • Change the password for the pi user (recommended)
    • Set the hostname to your liking
    • Make sure SSH server is enabled

      Note: If you are planning on using this server as a Kubernetes master - name it kmaster. If it is a Kubernetes node, name it knode<number> while <number> is the next in-line number of your cluster stack.

  5. Close the SSH session and reconnect to the RPi server again

  6. Verify hostname was properly set and force manual replacement, if required. From the RPi terminal:

    • Run cat /etc/hostname and check for kmaster
    • Run cat /etc/hosts and check for 127.0.1.1 kmaster
    • Run hostname which should return kmaster, otherwise run sudo hostname kmaster and check again

    Note: Use kmaster or knode<number> according to the server type if you are setting up a Kubernetes cluster.

  7. (Optional): Install your favourite utilities on the RPi server:

      # Use Vim as a text editor
      sudo apt-get -y install vim
    
  8. (Optional): Set your preferred aliases on ~/.bashrc:

      # Open bash run command file for editing
      vim ~/.bashrc
    
      # List all files/directories including hidden ones with size unit suffixes 
      alias l="ls -lah"
    
  9. (Optional): If you are planning to install the Rancher k3s version of Kubernetes, you should enable a few container features by adding them to the end of the /boot/cmdline.txt file:

      # Edit file with sudo
      sudo vim /boot/cmdline.txt
    
      # Append the following
      cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory
    

SSH Config

We need to configure secure shell access for client <-> RPi server communication. It will allow us to access the RPi server from client machines such as our laptop and also allow secure communication between the RPi server and our locally installed utilities.

Client

These instructions are relevant to the computer being used to connect to the RPi server:

  1. Create directory ~/.ssh if it doesn't exists and cd into it
  2. Run ssh-keygen (with name kmaster OR knode<number>, no passphrase)
  3. Add the private key kmaster to the ssh agent (select between permanent/temporary)

    ssh-add ~/.ssh/kmaster      # Add temporary to keychain
    ssh-add -K ~/.ssh/kmaster   # Add permanently to keychain
    

    Note: This will allow a secure communication without prompting for the password every time.

  4. Copy the public key to RPi server

      # Master node
      ssh-copy-id -i ~/.ssh/kmaster.pub pi@<RPI-IP-ADDRESS>
    
      # Agent node
      ssh-copy-id -i ~/.ssh/knode<number>.pub pi@<RPI-IP-ADDRESS>
    

    Important: For this step you will need to authenticate with your password. A file named ~/.ssh/authorized_keys is auto-created with the public key content on the RPi server.

  5. (Optional): If you have defined a static IP for the RPi server as described in here, add named hosts records on your client machine:

   # Use names instead of IP addresses
   echo -e "<MASTER-IP-ADDRESS>\tkmaster" | sudo tee -a /etc/hosts
   echo -e "<NODE-IP-ADDRESS>\tknode1" | sudo tee -a /etc/hosts
Enter fullscreen mode Exit fullscreen mode

 

RPi Server

These instructions are intended for the RPi server to enable SSH communication:

  1. Disable SSH PasswordAuthentication:

    • Edit ssh_config by sudo vim /etc/ssh/ssh_config
    • Uncomment PasswordAuthentication by removing the # prefix
    • Change its value to no
    • Make sure PasswordAuthentication is properly aligned (4 spaces)
  2. Restart SSH server

   sudo /etc/init.d/ssh restart
   sudo /etc/init.d/ssh status   # Verify SSH server is running
Enter fullscreen mode Exit fullscreen mode

Verification

To verify everything is set-up correctly, try to connect from the client machine i.e. laptop to the RPi server with the following command:

ssh pi@kmaster
ssh pi@knode<number>
Enter fullscreen mode Exit fullscreen mode

Troubleshooting

Locale

What? Locale errors/warnings when connecting to a RPi server and/or running locale on a server node. These are a few example errors:

setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Enter fullscreen mode Exit fullscreen mode

Solution: We'll set our locale to en_US by running the following steps:

  1. SSH to the RPi server
  2. Edit the locale.gen file using sudo vi /etc/locale.gen
  3. Uncomment the line with en_US.UTF-8 by removing the # character (make sure there are no leading spaces)
  4. Run sudo locale-gen en_US.UTF-8
  5. Run sudo update-locale en_US.UTF-8
  6. Run locale and make sure there are no errors/warnings

Summary

By the end of this post you should have a working headless (non-GUI) Raspberry Pi(s) connected to your home network with SSH communication available, good job ! 👏

What now? You are welcome to check back for a future blog post on how to install Kubernetes on top of your amazing RPi cluster.

Please leave your comment, suggestion or any other input you think is relevant to this post in the discussion below.


Like this post?
You can find more by:

Checking out my blog: https://blog.zachinachshon.com
Following me on twitter: @zachinachshon

Thanks for reading! ❤️

Top comments (2)

Collapse
 
brandonwallace profile image
brandon_wallace

What did you do with your cluster after you built it? What are the uses a cluster of computers? Is a cluster of computers something like RAID but at the server level? In case one fails it can be replaced without any downtime.

Collapse
 
zachinachshon profile image
ZachiNachshon

Hey, it's a good question, I've deployed k3s (Kubernetes distribution from Rancher Labs) on top of the RPi cluster. I'm using it as a production environment hosting my personal stack of services running on top of it. In addition, it serves me as a playground environment (on a different k8s namespace) when in need to offload workloads from my local machine.

The RPi cluster is a good alternative to the monthly usage fee you'll have to pay for managed VMs using the different cloud providers. In this case, you pay once and have a home lab ready to go. I'm using k3s to enjoy all the benefits there are in a managed container orchestration.

If you require to communicate with the RPi cluster from outside your home network, you can spin a basic and super cheap VM from one of the cloud providers (~5$ monthly) and run a simple service that interact with a client service running at your home network for basic request tunneling.

I'll be posting soon a k3s installation guide for the RPi cluster, you are welcome to stay tuned :)

Thanks for reading !