Running the Dashboard
To run the Dashboard, first you need to run the CEP server. After you have run the CEP server, go to the URL: https://localhost:9443/cep-dash to launch the Dashboard. Â
Alternatively, you can go to CEP management console, navigate to Home > Main > Dashboard, and click on 'CEP Dashboard' to launch the Dashboard. Refer to the image below. Â
Â
If you do not intend to host the CEP Dashbaord on localhost, consider the following: Â
By default UES dashboard will use "localhost" as assertion consumer url. Â
As such, when deploying the CEP Dashboard, the sso-idp-config.xml must also be updated. The assertion consumer URLs need to point to the appropriate host as the default is set to localhost.Â
When deploying a new dashboard, a new issuer entry must be created in the sso-idp-config.xml file.
Add the following block.
<ServiceProvider>
<Issuer>testdash</Issuer>
<AssertionConsumerService>https://PUT_YOUR_IP_HERE:9445/testdash/acs.jag</AssertionConsumerService>
<SignResponse>true</SignResponse>
<CustomLoginPage>/testdash/login.jag</CustomLoginPage>
</ServiceProvider>
Â