Verify that the newly deployed Client nodes are operational and include the parameter values defined in the deployment descriptor.
Procedure
- SSH into the Client node.
- Enter the login credentials for the VMware Blockchain user account.
- View all the running containers, and run the
docker ps -a
command.
- Verify that the following containers are running.
- To view the Daml Ledger container logs, and run the
docker logs –daml_ledger_api
command.
Sample messages appear.
INFO c.d.d.o.v.w.s.TRClient - Thin Replica Client INFO Started Index Server
- (Optional) To validate the uptime of service, list server calls.
sudo grpcurl -plaintext localhost:6865 list
- (Optional) Select a different Client node IP address and repeat the validation steps.
- If you enabled the Client node back up, verify that the backup is configured properly.
curl -X GET http://127.0.0.1:8546/api/backup/status
The call returns the following API response from the Client node.
{
"backup_state": {
"state": "ENABLED",
"state_change_time": "2021-11-29T22:40:33.828981Z[UTC]"
},
"execution_error": "",
"execution_message": "... some message ...",
"execution_status_code": 0,
"last_run_end_time": "2021-11-29T22:29:25.71632Z[UTC]",
"last_run_start_time": "2021-11-29T22:29:09.876718Z[UTC]"
"in_progress": false
}
- Verify that the backup_state value is ENABLED and execution_status_code value is 0.