Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Get quorum device

Get the quorum device that is used by the current cluster.

HTTP request syntax (URI)
GET <base_URI>/v8/storage/clustering/quorum-device
Return codes
Code Data Description
200 quorumDeviceQuorum device retrieved successfully.
500 Error message Error associated with the storage system.

Any HTTP status code other than 200 indicates that the API did not complete successfully.

Request example
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v8/storage/clustering/quorum-device
Response example for a gateway clustered system
HTTP/1.1 200 OK
{
  "quorumDevice": {
    "UUID": "00052bdd-2b2e-1e54-8000-000000000000",
    "clusterSafe": true,
    "name": "SMU-PERF",
    "quorumIpAddress": "172.27.64.10",
    "status": "CONFIGURED"
  }
}
Response example for a Unified system
HTTP/1.1 200 OK
{
  "quorumDevice": {
    "UUID": "visor",
    "clusterSafe": true,
    "name": "InternalQD",
    "quorumIpAddress": "127.0.0.1",
    "status": "CONFIGURED"
  }
}
Response example for a non-clustered system
HTTP/1.1 200 OK
{
  "quorumDevice": {
    "UUID": "00000000-0000-0000-0000-000000000000",
    "clusterSafe": true,
    "name": "",
    "quorumIpAddress": "0.0.0.0",
    "status": "UNCONFIGURED"
  }
}

 

  • Was this article helpful?