Skip to content

Installation


Hint - no Internet access

If the server on which you want to install SEAL Operator does not have Internet access, use another server with Internet access for logging on to the SEAL Systems delivery platform and downloading the folder. Then, copy the downloaded zip file to the server on which you want to install SEAL Operator.


Install SEAL Operator

  1. Check if all Requirements are fulfilled.

    Hint - execution policy

    Privileges for executing PowerShell scripts are needed during the installation. If not done yet, set the execution policy at least to RemoteSigned.

    Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
    
  2. Download the Operator - 1.8.0.830 - msi folder. It is saved as Operator - 1.8.0.830 - msi.zip.

    Hint - logon data

    You receive the logon data for https://delivery.sealsystems.de from your Technical Project Manager at SEAL Systems.

  3. Extract Operator - 1.8.0.830 - msi.zip.

  4. Open a PowerShell (Administrator), change to the Operator - 1.8.0.830 - msi directory and start the installation of the packages:

    cd "Operator - 1.8.0.830 - msi"
    
    Set-ExecutionPolicy Bypass -Scope Process -Force; .\install.ps1
    
  5. Open the firewall ports.

    Set-ExecutionPolicy Bypass -Scope Process -Force; .\firewall.ps1
    
  6. Close the PowerShell and start a new one for the further configuration. Otherwise, the paths are not set correctly.

  7. Start the following service:

    operator service start seal-consul-agent
    
  8. Import the SEAL Operator configuration:

    operator config update "$env:ProgramData\SEAL Systems\config\operator.yml" --token INSECURE_ACL_MASTER_TOKEN --insecure
    
  9. Open a new PowerShell and start SEAL Operator:

    operator service start
    

Hint - no automatic start

After an installation or update, you need to start the operator service yourself. It won't start automatically.


Next Step

Continue with: Mandatory Configuration Overview


Back to top