Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. To confirm, login to SQL using the EngageIP user and password for SQL, then paste this into a new query window:

    Code Block
    USE master;SELECT counter_name ,cntr_value,CAST((cntr_value/1024.0) AS NUMERIC(8,2)) AS Gb FROM dbo.sysperfinfo WITH (nolock) WHERE counter_name LIKE '%server_memory%';
    

...

  1. Run the following select to confirm that services heartbeat dates are being updated in the engageipservice table. This indicates the service is actively communicating with and updating the database:

    Code Block
    SELECT * FROM engageipservice

...

  1. Reboot the webserver to confirm whether the UI is able to start reflecting the service status.


This should return values, otherwise it will return the actual error for you, in this case its a permissions based issue.

...