curl https://localhost:9200/ nodes/status

From wikieduonline
Jump to navigation Jump to search

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

Missing authentication credentials[edit]

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
}
Solution, add username and password to your request, It may be saved in your K8s secrets: curl --insecure https://localhost:9200/_nodes/status -u "your_usename:your_password"

unable to authenticate user[edit]

{

 "error": {
   "root_cause": [
     {
       "type": "security_exception",
       "reason": "unable to authenticate user [admin] for REST request [/_nodes/status]",
       "header": {
         "WWW-Authenticate": [
           "Bearer realm=\"security\"",
           "ApiKey",
           "Basic realm=\"security\" charset=\"UTF-8\""
         ]
       }
     }
   ],
   "type": "security_exception",
   "reason": "unable to authenticate user [admin] for REST request [/_nodes/status]",
   "header": {
     "WWW-Authenticate": [
       "Bearer realm=\"security\"",
       "ApiKey",
       "Basic realm=\"security\" charset=\"UTF-8\""
     ]
   }
 },
 "status": 401
}


security_exception[edit]

{
 "error": {
   "root_cause": [
     {
       "type": "security_exception",
       "reason": "action [cluster:monitor/health] is unauthorized for user [your-not-auth-user]"
     }
   ],
   "type": "security_exception",
   "reason": "action [cluster:monitor/health] is unauthorized for user [your-not-auth-user]"
 },
 "status": 403
}


{"error":{"root_cause":[{"type":"security_exception","reason":"unable to authenticate user [elastic] for REST request 
[/_snapshot/your_repo/%3Csnapshot-%7Bnow%2Fd%7D%3E]","header":{"WWW-Authenticate":["Bearer realm=\"security\"","ApiKey","Basic realm=\"security\" 
charset=\"UTF-8\""]}}],"type":"security_exception","reason":"unable to authenticate user [elastic] for REST request 
[/_snapshot/your_repo/%3Csnapshot-%7Bnow%2Fd%7D%3E]","header":{"WWW-Authenticate":["Bearer realm=\"security\"","ApiKey","Basic realm=\"security\" 
charset=\"UTF-8\""]}},"status":401}

See also[edit]

Advertising: