Difference between revisions of "Curl https://localhost:9200/ nodes/status"

From wikieduonline
Jump to navigation Jump to search
Line 35: Line 35:
  
 
== See also ==
 
== See also ==
* {{ELK}}
+
* {{Elasticsearch}}
  
 
[[Category:ELK]]
 
[[Category:ELK]]

Revision as of 19:20, 5 July 2022

curl https://localhost:9200/_nodes/status
{"_nodes":{"total":0,"successful":0,"failed":0},"cluster_name":"docker-cluster","nodes":{}}


kubectl -n your_namespace exec -ti your_elastic_pod1 -- /bin/sh -c "curl -k https://localhost:9200/_nodes/status" | jq .
{
  "error": {
    "root_cause": [
      {
        "type": "security_exception",
        "reason": "missing authentication credentials for REST request [/_nodes/status]",
        "header": {
          "WWW-Authenticate": [
            "Bearer realm=\"security\"",
            "ApiKey",
            "Basic realm=\"security\" charset=\"UTF-8\""
          ]
        }
      }
    ],
    "type": "security_exception",
    "reason": "missing authentication credentials for REST request [/_nodes/status]",
    "header": {
      "WWW-Authenticate": [
        "Bearer realm=\"security\"",
        "ApiKey",
        "Basic realm=\"security\" charset=\"UTF-8\""
      ]
    }
  },
  "status": 401
}

See also

Advertising: