Skip to content

Installing SEAL Elastic Stack


The installation consists of a server an a client part which you have to install separately.

  1. Server:

    The server part includes Elasticsearch and Kibana. You have to install it on the management server.

  2. Client:

    The client part contains Filebeat. You have to install it on the PLOSSYS 5 server.


Management Server

Hint - Disc Space

Before installing the Elastic Stack server part, make sure that you have enough disk space available on the installation device. If the amount of free space is less than about 10 % of the device's total capacity, Elasticsearch will lock the created indices and Kibana will not start properly.

  1. Install the unpacking program unzip, if necessary:

    • RHEL:

      sudo yum --assumeyes install unzip
      
    • SLES:

      sudo zypper --non-interactive install unzip
      
  2. In a browser, log on to the SEAL Systems delivery platform with your logon data:

    https://delivery.sealsystems.de

    Hint - logon data

    You receive the logon data from your Technical Project Manager at SEAL Systems.

  3. Download the SEAL Elastic Stack - 7.16.1.85 - rpm folder. It is saved as SEAL Elastic Stack - 7.16.1.85 - rpm.zip.

  4. Extract SEAL Elastic Stack - 7.16.1.85 - rpm.zip:

    unzip "SEAL Elastic Stack - 7.16.1.85 - rpm.zip"
    
  5. Change to the SEAL Elastic Stack - 7.16.1.85 - rpm directory and start installing the contained packages:

    cd "SEAL Elastic Stack - 7.16.1.85 - rpm"
    
    sudo sh install.sh
    
  6. Open the required firewall ports for necessary services:

    sudo sh firewall.sh
    
  7. Start Elasticsearch:

    sudo systemctl start elasticsearch
    
  8. Start Kibana:

    sudo systemctl start seal-kibana
    

PLOSSYS 5 Server

  1. Install the unpacking program unzip, if necessary:

    • RHEL:

      sudo yum --assumeyes install unzip
      
    • SLES:

      sudo zypper --non-interactive install unzip
      
  2. In a browser, log on to the SEAL Systems delivery platform with your logon data:

    https://delivery.sealsystems.de

    Hint - logon data

    You receive the logon data from your Technical Project Manager at SEAL Systems.

  3. Download the SEAL Elastic Stack - 7.16.1.85 - rpm folder. It is saved as SEAL Elastic Stack - 7.16.1.85 - rpm.zip.

  4. Extract SEAL Elastic Stack - 7.16.1.85 - rpm.zip:

    unzip "SEAL Elastic Stack - 7.16.1.85 - rpm.zip"
    
  5. Change to the SEAL Elastic Stack - 7.16.1.85 - rpm/client directory and start installing the packages:

    cd "SEAL Elastic Stack - 7.16.1.85 - rpm/client"
    
    sudo sh install.sh
    
  6. Start SEAL Filebeat:

    sudo systemctl start seal-filebeat
    

Back to top