Skip to content

Configure the Management Server


Perform the following configuration steps on the management server if you have installed PLOSSYS 5 with separate management server or in a cluster.


Configure Elasticsearch

  1. Open the firewall for Elastic Stack. For this, open a PowerShell (Administrator), change to the SEAL Elastic Stack - 7.16.1.85 - msi\server directory and start the script for opening the firewall ports:

    cd "SEAL Elastic Stack - 7.16.1.85 - msi\server"
    
    Set-ExecutionPolicy Bypass -Scope Process -Force; .\firewall.ps1
    
  2. Edit the following file on the management server:

    C:\ProgramData\Elastic\Elasticsearch\config\elasticsearch.yml
    
  3. Add the following lines:

    network.host: 0.0.0.0
    discovery.type: single-node
    
  4. Save the file.

  5. Edit the following file on the management server:

    C:\ProgramData\Elastic\Elasticsearch\config\jvm.options
    
  6. Search for the following lines and update the parameters in order to set the Max_Heap_Size where <ram_mb> is to be at least 50 % of the server's RAM:

    –Xmx<ram_mb>m
    –Xms<ram_mb>m
    

    Hint - same value

    With –Xmx<ram_mb>m and –Xms<ram_mb>m, the same value has to be used for <ram_mb>. Otherwise, Elasticserach will not start!

    Example - 2048 MB

    –Xmx2048m
    –Xms2048m
    
  7. Save the file.

  8. In a PowerShell, configure the restart of the Elasticsearch service in case of failure:

    sc.exe failure Elasticsearch reset= 0 actions= restart/60000
    
  9. In a PowerShell, restart the Elasticsearch service:

    restart-service elasticsearch
    

Configure Kibana

  1. Edit the following file on the management server:

    C:\ProgramData\SEAL Systems\config\kibana.yml
    
  2. Uncomment the following line:

    server.host: "0.0.0.0"
    
  3. Save the file.

  4. In a PowerShell, restart the seal-kibana service for Kibana:

    restart-service seal-kibana
    

Configure easyPRIMA

The following steps are only required if bos2gyros has been installed after easyPRIMA in order to make the path of bos2gyros available to easyPRIMA.

  1. Open a SEAL shell on the management server.

  2. Stop the system:

    sysstop -full
    
  3. Execute the following command for setting the environment:

    sitwelcome
    
  4. Log off from Windows and log on to it again.

  5. Open a SEAL shell and start the system:

    sysstart
    

Next Step

Continue with: Configure the PLOSSYS 5 Server


Back to top