Skip to content

Configuring the SEAL Operator Server


Operating System Settings

  1. In an editor, open the following configuration file:

    /etc/sysctl.conf
    
  2. Adjust the necessary operating system settings

    • for high-volume systems:

      net.ipv4.ip_local_port_range = 10000 65535
      fs.file-max = 1058576
      
    • for working with Elasticsearch:

      vm.max_map_count = 262144
      

Logging

If you have installed SEAL Operator on a separate management server, you have to set the IP address of the management server for the logging:

  1. On the SEAL Operator server, edit the following file:

    /opt/seal/etc/filebeat-operator.yml
    
  2. In elasticsearch, replace localhost by the host name or IP address of the management server:

    output:
      elasticsearch:
        hosts:
        - http://<admin_server>:9200
    
  3. Save the file.

  4. Restart the Operator filebeat:

    sudo systemctl restart seal-operator-filebeat
    

Displaying the Log Messages of SEAL Operator in Kibana

You can display and evaluate the log messages of SEAL Operator in the Kibana user interface.

In a Web browser, open the Kibana user interface:

http://<admin_server>:5601

Hint - saving search settings

Kibana does not save search settings. But as the search settings are included in the URL you can save the search settings as bookmarks.


Back to top