Show high availability configuration
Purpose
Shows the configuration details of high availability on the Eclipse Amlen server.URI
Use the Eclipse Amlen REST API GET method with the following Eclipse Amlen configuration URI:
http://<admin-endpoint-IP:Port>/ima/v1/configuration/HighAvailability
Usage NotesĀ®
- Capitalization must be used as shown.
Related REST Administration APIs
Example
Shows the configuration details of high availability on the Eclipse Amlen server by using cURL:curl -X GET http://127.0.0.1:9089/ima/v1/configuration/HighAvailability
An example response to the GET method:
{
"Version": "v1",
"HighAvailability": {
"EnableHA": true,
"Group": "Group2",
"StartupMode": "AutoDetect",
"PreferredPrimary": true,
"DiscoveryTimeout": 600,
"HeartbeatTimeout": 10,
"RemoteDiscoveryNIC": "10.11.1.212",
"LocalReplicationNIC": "10.12.1.87",
"LocalDiscoveryNIC": "10.11.1.87",
"ExternalReplicationNIC": "10.11.1.210",
"ExternalReplicationPort": 1024,
"ReplicationPort": 1025,
"RemoteDiscoveryPort": 1026,
"UseSecuredConnections": false
}
}