In this post, we’ll go through the steps to install Ignition 8.1 on a VPS hosted on OVH. The process includes:
Contents:
Figure: Ignition 8.1 Logo.
Create an SSH Key
On your local machine (Linux/macOS/WSL), open a terminal and run:
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:
Download & Upload Ignition Installer
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:
- Make the installer executable:
1
| chmod +x ignition-8.1.x-linux-x64-installer.run
|
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
|