Java environment for Ignition Edge on Raspberry Pi OS Lite (64-bit)
# 1. Install required dependencies
sudo apt update
sudo apt install -y wget
# 2. Download Adoptium (Eclipse Temurin) Java 8 for ARM64
wget https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u412-b08/OpenJDK8U-jre_aarch64_linux_hotspot_8u412b08.tar.gz
# 3. Create Java directory and install
sudo mkdir -p /usr/lib/jvm
sudo tar xzf OpenJDK8U-jre_aarch64_linux_hotspot_8u412b08.tar.gz -C /usr/lib/jvm
# 4. Configure system Java
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/jdk8u412-b08-jre/bin/java" 1
sudo update-alternatives --set java /usr/lib/jvm/jdk8u412-b08-jre/bin/java
# 5. Verify installation
java -version
Expected Output:
openjdk version "1.8.0_412"
OpenJDK Runtime Environment (Temurin)(build 1.8.0_412-b08)
OpenJDK 64-Bit Server VM (Temurin)(build 25.412-b08, mixed mode)
Copy Ignition from Laptop to Pi:
scp -i $env:USERPROFILE\.ssh\id_ed25519 "C:\Users\DrWaq\Downloads\Ignition-Edge-linux-aarch-64-8.1.48.zip" WA@<your-pi-ip>:~
Install & Start Ignition:
you’ve successfully accessed the Ignition Edge web interface and are at the final setup step! Here’s what to do next:
To Complete Setup:
- Review Port Settings (You can keep defaults unless):
- HTTP Port 8088: Standard web interface
- HTTPS Port 8043: Secure web interface
- Gateway Network Port 8060: For inter-gateway communication
- Click “Finish Setup”
This will initialize the gateway and create the admin account.
Critical Next Steps After Clicking “Finish Setup”:
- Set Admin Credentials
You’ll be prompted to create your administrator account.
Recommendation: Use a strong password and note it down. - Install Required Modules
Go toConfigure > Modules
and install:- OPC UA (for device connectivity)
- MQTT Engine (for IoT messaging)
- Perspective (for modern HMIs)
- Any other modules you need
- Configure System Settings
Go toConfigure > System > Settings
to:- Set Gateway Name
- Configure Backups
- Set Time Zone
- Enable HTTPS (Recommended)
Go toConfigure > Security > Certificates
to install a proper SSL certificate.