scada,

Install Ignition on VPS

Duc-Tri Duc-Tri Follow Mar 26, 2025 · 1 min read

In this post, we’ll go through the steps to install Ignition 8.1 on a VPS hosted on OVH. The process includes:

Contents:
Ignition 8.1 Logo.
Figure: Ignition 8.1 Logo.

Create an SSH Key

On your local machine (Linux/macOS/WSL), open a terminal and run:

1
ssh-keygen -t rsa -b 4096 -C "[email protected]"

Press Enter to accept the default location. A public/private key pair will be generated at ~/.ssh/id_rsa and ~/.ssh/id_rsa.pub.

Create a VPS on OVH

  • Go to OVHcloud
  • Choose a VPS plan (Ubuntu Server 22.04 LTS recommended)
  • When prompted, paste your public SSH key (~/.ssh/id_rsa.pub)
  • Deploy your instance and wait a few minutes.

Connect to Your VPS via SSH

Use the IP provided by OVH:

1
ssh root@<YOUR_VPS_IP>

Download & Upload Ignition Installer

  • Download Installer (on your local machine): Go to Inductive Automation Downloads and download the Linux installer (.run) for version 8.1.

  • Upload to VPS From your local machine:

1
scp ~/Downloads/ignition-8.1.x-linux-x64-installer.run root@<YOUR_VPS_IP>:/root/

Run the Ignition Installer

  • SSH into the VPS if not already connected:
1
ssh root@<YOUR_VPS_IP>
  • Make the installer executable:
1
chmod +x ignition-8.1.x-linux-x64-installer.run
  • Run the installer:
1
./ignition-8.1.x-linux-x64-installer.run
  • Follow the interactive setup. Once installed, Ignition should be running on port 8088:
1
http://<YOUR_VPS_IP>:8088