Installation
inSCADA can be installed in three different environments. Choose the method that suits your needs:
Windows Installation
Section titled “Windows Installation”1. Download Setup
Section titled “1. Download Setup”Download the inSCADA installer from inscada.com/download. Click the “Download” button on the inSCADA Platform card.
2. Installation
Section titled “2. Installation”Run the downloaded setup file. The installation wizard automatically installs all components (platform, databases, cache).
3. First Access
Section titled “3. First Access”After installation is complete, open your browser and navigate to:
https://localhost:8082Default login credentials:
| Field | Value |
|---|---|
| Username | inscada |
| Password | 1907 |
4. Licensing
Section titled “4. Licensing”On first installation, inSCADA runs in demo mode. Demo mode allows you to try the basic features with a limited number of I/O points.
For a full-featured evaluation, you can obtain a free 1-month trial licence:
- Navigate to System → Licence in the platform
- Click the Activate Trial button
- Fill in the required information
- Your trial licence is activated automatically (30 days)
Linux Installation
Section titled “Linux Installation”Supported Distributions
Section titled “Supported Distributions”- Ubuntu 22.04 LTS / 24.04 LTS
- Red Hat Enterprise Linux 8 / 9
- CentOS Stream 8 / 9
- Debian 11 / 12
1. Prerequisites
Section titled “1. Prerequisites”# Ubuntu / Debiansudo apt updatesudo apt install -y curl wget unzip
# RHEL / CentOSsudo dnf install -y curl wget unzip2. Installation
Section titled “2. Installation”Download and run the inSCADA Linux installation package:
# Download the installation package (check inscada.com/download for the latest version)wget https://www.inscada.com/download/inscada-linux-setup.sh
# Grant execution permissionchmod +x inscada-linux-setup.sh
# Start installationsudo ./inscada-linux-setup.shThe installation script automatically installs all components (platform, databases, cache) and configures them as a systemd service.
3. Service Management
Section titled “3. Service Management”# Check service statussudo systemctl status inscada
# Start the servicesudo systemctl start inscada
# Stop the servicesudo systemctl stop inscada
# Enable automatic startupsudo systemctl enable inscada4. First Access
Section titled “4. First Access”Access the server’s IP address from your browser:
https://<server-ip>:8082Default login credentials and licensing steps are the same as Windows (see above).
Docker Installation
Section titled “Docker Installation”inSCADA can also be run as a Docker container. This method is suitable for quick evaluation, development environments and CI/CD integrations.
version: '3.8'services: inscada: image: inscada/inscada:latest ports: - "8082:8082" - "8083:8083" volumes: - inscada-data:/opt/inscada/data environment: - INS_MASTER_KEY=your-secret-key restart: unless-stopped
volumes: inscada-data:# Startdocker-compose up -d
# Follow logsdocker-compose logs -f inscada
# Stopdocker-compose downAfter Installation
Section titled “After Installation”Once installation is complete, proceed to the Platform Architecture page to learn about inSCADA’s structure.