Versions Compared

Key

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

Anchor
top1
top1


Tip

Step - by - step guide on how to Install Insights Enterprise - Business logic


Expand
titlePrerequisite
  • Environment variable INSIGHTS_HOME and server-config.json. 
    • Windows: Server 2 - SetEnvVariables.bat
    • Linux: insights_first.sh
  • Java
  • Apache-Tomcat
  • Set the flag "showWebhookConfiguration" to true in uiconfig.json

Refer here for installation steps if required.



Expand
titleStep1: Run PlatformInsightsWebHook

          (The above link is nexus enterprise repository which is restricted with user credentials. Use authorized credentials or contact DevOpsPlatformSupport@cognizant.com )

  • Run the downloaded jar using the command:
Code Block
languagebash
themeConfluence
java -jar PlatformInsightsWebHook-<version>.jar

Example: java -jar PlatformInsightsWebHook-0.1.jar

  • If you want to run the jar as a background service instead, use the below command:
Code Block
languagebash
themeConfluence
nohup java -jar PlatformInsightsWebHook-<version>.jar &
  • The logs will be available at $INSIGHTS_HOME/logs/PlatformInsightsWebHook 


Expand
titleStep2: Run PlatformWebhookEngine
  • Set flag as true for WebhookEngine in "server-config.json" as mentioned below:
            
Info

"enableWebHookEngine" : true

}

Code Block
languagebash
themeConfluence
java -jar PlatformEngine-<version>.jar

Example: java -jar PlatformEngine-0.1.jar

  • If you want to run the jar as a background service instead, use the below command:
Code Block
languagebash
themeConfluence
nohup java -jar PlatformEngine-<version>.jar 
  • The logs will be available at $INSIGHTS_HOME/logs/PlatformEngine 



Back to Top