Southbound Service Installation and Configuration
Overview
APM as part of the Install Package also delivers an installation package setup of the Southbound Service from the APM to the EAM system. The topics outline the steps that you must complete to deploy and configure this module for the first time. These instructions assume that you have completed the steps for deploying the basic APM system architecture.
Note: This service can be deployed on the APM Connect Server, APM server, or a dedicated server. The service should have access to the APM Connect Postgres Staging Database.
Installation Procedure
Before You Begin
Before you run the Southbound Services installer, you must:
- Ensure that your system meets the System Requirements.
- Ensure that you have access to the Southbound Services installation package.
- Ensure that you can access the APM Server host URL and the ActiveMQ from the server where you plan to install the Service.
- Ensure that you have access to the Postgres IR database of the APM Connect server.
Procedure
Uninstall Boomi or Postgres Application
Procedure
- Open the APMConnect - Uninstaller application. Select the required checkbox and select Uninstall.
- Then, check if the service is removed from the Windows Service Panel.
APMC Southbound Service Configuration
Before starting the Southbound Service, the required configuration needs to be set up.
Southbound Service Configuration
The APM Connect Southbound Service configuration needs to be provided in the appsettings.json file in C:\\Program Files\APM.Connect.Southbound.
It consists of following sections:
- Logging - Logging Level
- FileWSDL - Contains the configuration for the EAM file receiver.
- AppConfiguration contains the following:
- IR staging Database information
- IR_Host
- IR_Port
- IR_Database
- IR_Schema
- IR_UserId
- IR_Password
- ADL configuration
- Default_Base_Directory - This is for the CSV file shared for the DL between APM and the APMC Southbound Service.
- Directory_Path – This is for the ADL root folder of the Scan and Archive.
- Polling_Frequency_In_MilliSeconds
- Max_File_Size_In_Bytes
- Max_Filename_Length
- Valid_Extensions
- Valid_Zip_Extensions
- APM (Application Server) configuration
- Apm_Api_Test_Path
- Web_Api_Path
- DatasourceId
- Id. (user-id)
- Password
- EAM Server Connection Type Configuration
- Sap_Connection_Type (Application/Message)
- Use_API_Key (True/false)
- API_Key
- APM Application ActiveMQ Credentials - For the v5 Audit Job:
- ActivemqName (Queue name where the Asset Ingestion Completion Messages are posted by the Ingestor)
- ActivemqUri
- ActivemqUsername
- ActivemqPassword
- IR staging Database information
Southbound Service Configuration Example File
{
"Urls": "http://0.0.0.0:8040",
"Logging": {
"LogLevel": {
"Default": "Trace",
"Microsoft.AspNetCore": "Trace"
}
},
"Microsoft.AspNetCore.HttpLogging.HttpLoggingMiddleware": "Information",
"FileWSDL": {
"UrlOverride": "",
"VirtualPath": "",
"WebServiceWSDLMapping": {
"EamFileReceiver": {
"UrlOverride": "EamFileReceiver",
"WsdlFile": "EamFileReceiver.wsdl",
"SchemaFolder": "Schemas",
"WsdlFolder": "Schemas"
}
}
},
"AllowedHosts": "*",
"AppConfiguration": {
"IR_Host": "",
"IR_Port": "5432",
"IR_Database": "",
"IR_Schema": "public",
"IR_UserId": "",
"IR_Password": "",
"Is_Linux": false,
"Linux_Base_Path": "",
"Default_Base_Directory": "C:\\APMConnect\\ ADL",
"Apm_Api_Test_Path": "/meridium/api/internal/connect/connectionstatus/ApmcToApm",
"Use_SSL": false,
"CmmsId": "",
"Integration_Api_Key": "",
"Integration_Use_Api": true,
"Sap_Connection_Type": "Application",
"Use_API_Key": false,
"API_Key": "",
"DownStream_Request_Timeout_In_Minutes": 2,
"Directory_Path": "\\\\{APM_CONNECT_HOST}\\APMConnect\\ ADL",
"Web_Api_Path": "http://{APM_HOSTNAME}/meridium/api/v1",
"Ingestor_Api_Path": "http://{Ingestor_HOSTNAME}/meridium/connect/api/v1",
"DatasourceId": "",
"Id": "",
"Password": "",
"Polling_Frequency_In_MilliSeconds": 0,
"Max_File_Size_In_Bytes": 100000000,
"Max_Filename_Length": 100,
"Valid_Extensions": "zip,xlsx",
"Valid_Zip_Extensions": "csv",
"Sap_Cloud_Enabled": false,
"Asset_Ingestion_Enabled": false,
"Enable_G2DL_Ingestion": true,
"ActivemqName": "ApmConnectIngestionCompleted",
"ActivemqUri": "activemq://{APM_ACTIVE_MQ_HOST}:61616",
"ActivemqUsername": "",
"ActivemqPassword": ""
},
"ASPNETCORE_URLS": "http://+:8040",
"DOTNET_PRINT_TELEMETRY_MESSAGE": false,
"ASPNETCORE_ENVIRONMENT": "Production"
}