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, change to the SEAL Elastic Stack - 7.16.1.85 - rpm/server directory and start the script for opening the firewall ports:

    cd "SEAL Elastic Stack - 7.16.1.85 - rpm/server"
    
    sudo sh firewall.sh
    
  2. Edit the following file on the management server:

    /etc/elasticsearch/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:

    /etc/elasticsearch/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. Execute the following command. It opens an editor with an empty file.

    sudo systemctl edit elasticsearch.service
    
  9. Add the following lines to the file:

    [Service]
    Restart=always
    RestartSec=60
    
  10. Save the file.

  11. Restart the service for Elasticsearch:

    sudo systemctl restart elasticsearch
    

Configure Kibana

  1. In the /opt/seal/etc/kibana.yml file, activate the following setting:

    server.host: 0.0.0.0
    
  2. Restart the following service for Kibana:

    sudo systemctl restart seal-kibana
    

Next Step

Continue with: Configure the PLOSSYS 5 Server


Back to top