Restarting Gateway Services

Some issues with Gateway services on HPE Ezmeral Runtime Enterprise can be resolved by restarting the epmd, haproxy, beam.smp, and nagios services on the Gateway hosts.

Prerequisites

Required access rights: Platform Administrator

About this task

Some issues with Gateway services can be fixed by restarting services on each Gateway host. Perform this task on each Gateway host in the deployment.

Procedure

  1. Execute the following commands:
    pkill -9 epmd
    pkill -9 haproxy
    pkill -9 beam.smp
  2. Restart the epmd, haproxy, and beam.smp services by executing the following command:
    service bds-controller restart
  3. Restart the Nagios container:
    # Fetch the container id of the nagios container
    CONTAINER_ID=$(docker ps | grep epic-nagios | awk '{print $1}')
    
    # Restart the nagios container
    docker restart $CONTAINER_ID
    
  4. Wait until the services have restarted.