United Manufacturing Hub

Installing the UMH on EC2 using Ubuntu

Discover a step-by-step guide to installing the United Manufacturing Hub (UMH) on Ubuntu, tailored for EC2 and Azure VMs. Perfect for users seeking alternatives to officially supported Flatcar and RHEL distributions.

Installing the UMH on EC2 using Ubuntu


The United Manufacturing Hub (UMH) is officially supported on two Linux distributions: Flatcar and RHEL. This is because for these certified operating systems, the UMH has set up automated testing. This ensures that a new version of the UMH will be guaranteed to run. Read why the United Manufacturing Hub choose Flatcar as the operating system of the Industrial IoT.

Nevertheless, it's possible to install the UMH on other Linux distributions. It has been requested multiple times by the community, and now we want you to show how you can do this.

This guide explains step by step how to install the UMH on the popular Linux distribution Ubuntu 22.04.4 LTS. This approach is useful when you're for example trying to install the UMH on a cloud instance like AWS EC2 and struggle to install Flatcar or RHEL there.

💡
To follow along with this guide, make sure you have a working installation of Ubuntu with internet access. This can be any computer or virtual machine with a minimum of 4 CPU cores, 16 GB of RAM and 32 GB of disk space. On EC2, "m4.xlarge" is a good start.

The process consists of two steps. First, the Ubuntu installation is configured. Second, the UMH is installed along with the Management Console.


1. Configure Ubuntu


This guide assumes a bare minimal Ubuntu installation of version 22.04.4 LTS. If you haven't already done so, update the packages and upgrade the system.

sudo apt update && sudo apt upgrade

For the installation of the UMH we will need the packages curl and jq.

sudo apt install curl jq

Optional: configure SSH

sudo apt install ssh
Install packages

Reboot the system.

After logging in, verify that the SSH service is running:

systemctl status ssh
Verify that the SSH service is online

Get the IP address of the VM:

Find the IP address of the Ubuntu machine

The IP address on my computer is 192.168.178.172. Your IP address will likely be different.

We can now connect to Ubuntu VM using our username and IP address:

ssh [email protected]
Connect to Ubuntu via SSH
💡
Keep this terminal window open as we will need to type in it later.

2. Install the UMH via the Management Console

Next, we install the UMH together with the Management Companion via the Management Console. Navigate to the United Manufacturing Hub Installation page. On that page, we find a link to the Management Console. Create an account if you don't already have an account, and then sign in to the Management Console.

Sign in to the UMH Management Console

Next, we want to create a new instance in the management console that will point to the UMH installation on our Ubuntu system.

Create the installation command in the Management Console

To create a new instance:

  1. Click on + Add Instance
  2. Select Install UMH Only
  3. Give it the name "Ubuntu" and lick on Create my command
  4. Now copy the command and paste it into the terminal on Ubuntu
Paste and run the command in the Ubuntu terminal

Type Y at the installation prompt to install both UMH and the Management Companion that is required for the Management Console.

UMH and Management Companion installation

From the output, we see that the installation of both the UMH and the Management Companion is successful:

The installation is successful

Now we can open the Management Console again and click on Let's Go!.

We see that there's a new instance "Ubuntu" that's online whose modules are healthy:

The UMH instance in the Management Console is online and its modules are healthy

The following command shows the UMH services that are running on Kubernetes:

$(which kubectl) get svc -n united-manufacturing-hub --kubeconfig /etc/rancher/k3s/k3s.yaml
The UMH services are up and running on Kubernetes
💡
Here you can find more kubectl commands for managing the system.

Conclusion

Although, the UMH is officially supported on Flatcar Linux and RHEL, we can just as easily install it on Ubuntu. For the installation, we relied on the Management Console. Installing the UMH via the Management Console installs both the UMH and the Management Companion that established a connection to the Management Console. The installed UMH instance on Ubuntu then becomes visible in the Management Console. Finally, we inspected the result by checking that the UMH services are indeed running on Kubernetes.

Troubleshooting

  • The UMH installation can take too long on older systems. Before installing, make sure your system is updated and meets the hardware requirements.
  • The UMH instance showing "offline" in the Management Console. A restart of the UMH instance on Ubuntu should resolve this issue.

Further reading

Stay up-to-date

Subscribe to the UMH Learning Hub Newsletter to receive the latest updates and gain early access to our blog posts.

Subscribe