- Download the PlatformAuditEngine jar from (Nexus link here)
- Run the downloaded jar using the command:
Code Block |
---|
language | bash |
---|
theme | Confluence |
---|
| java -jar PlatformAuditEngine-<version>.jar |
Example: java -jar PlatformAuditEngine-0.1.jar - If you want to run the jar as a background service instead, use the below command:
Code Block |
---|
language | bash |
---|
theme | Confluence |
---|
| nohup java -jar PlatformAuditEngine-<version>.jar & |
Example: nohup java -jar PlatformAuditEngine-0.1.jar & - To specify the interval at which data is read from neo4j, the time interval in seconds can be specified as arguments. First argument is to read data from all tools except ALM and second argument is to read data from ALM.
Example: nohup java -jar PlatformAuditEngine-<version>.jar & 400 350 - The logs will be available at $INSIGHTS_HOME/logs/PlatformAuditEngine
Note |
---|
| The server running PlatformAuditEngine must have the blockchainConfig.json file with the dependency files (datamodel.json, Process.json, private and public keys) in appropriate locations |
|