How To
Summary
How can users, who are unable to use non-ssl ports, successfully run the Event Analytics Configuration wizard within on-prem Netcool Operations Insight (NOI) environments?
Objective
Environment
Steps
1. Open the NOI_UICONFIG_UTILS.js policy from within the Impact GUI.
2. In the getOutputParameterProperties() function, locate the following lines (approx. on line 347 and 348 in FP31. Line numbers may vary in older fix packs):
HttpMethod = "get";
IMPACT_UI_HTTPSCHEME = "http";
Change http to https and also set the port number to 17311:
HttpMethod = "get";
IMPACT_UI_HTTPSCHEME = "https";
IMPACT_UI_HTTP_PORT = "17311";
3. Repeat for the same for the saveOutputParameterProperties() function, locate the following lines:
HttpMethod = "post";
IMPACT_UI_HTTPSCHEME = "http";
Change to https and set the port to 17311:
HttpMethod = "post";
IMPACT_UI_HTTPSCHEME = "https";
IMPACT_UI_HTTP_PORT = "17311";
4. Save the policy.
5. Rerun the Event Analytics Configuration wizard.
Document Location
Worldwide
Was this topic helpful?
Document Information
Modified date:
11 October 2023
UID
ibm17050961