Skip to content

Configure the Logging


If you have installed PLOSSYS 5 with a separate management server, the IP address of the management server has to be set for the logging:

  1. Edit the following file on the PLOSSYS 5 server:

    /opt/seal/etc/filebeat.yml
    
  2. With elasticsearch, replace localhost by the hostname or IP address of the management server:

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

  4. Specify the following key for the seal-rest service:

    Example - setting key via PLOSSYS CLI

    plossys config set ELASTICSEARCH_REST_URL "http://<admin_server>:9200" --service rest --insecure
    
  5. Restart the PLOSSYS 5 system.


Back to top