Install Ignition via Ubuntu CLI

Can someone help me installing ignition on a Linux Ubuntu CLI?
I am new to Linux at this moment.

I have found a installation document but its from 2010.
How To: Install Ignition on Linux | Inductive Automation

Server information

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 24.04.2 LTS
Release:        24.04
Codename:       noble

Here are the current instructions:

See this post for an example and a information about a current issue:

3 Likes

In its most-simple form:

  1. Download the Linux nstaller (.run file) - I recommend you copy the link from the IA download page and paste it in place of the version-redacted link below:
    wget --referer=https://inductiveautomation.com/downloads/ignition https://files.inductiveautomation.com/release/ia/8.1.xx/yyyyyyyy/ignition-8.1.xx-linux-x64-installer.run

  2. Make the file executable (w/ chmod command referenced in that doc).
    chmod +x ./ignition-8.1.xx-linux-64-installer.run

  3. Then run the installer.
    ./ignition-8.1.xx-linux-64-installer.run

You may need super-user permissions (add sudo to beginning of your commands).

Some additional info here:

1 Like

I was missing step 2 & 3, is a basic operation I wasn't aware of.
Thanks!