Hi ,
I have an Elasticsearch cluster with 5 nodes ( 3 master , 2 data) and I installed Xpack over all nodes,
Also I installed Kibana and Xpack for Kibana on one of master node.
then I changed kibana
default password. after that login inside Kibana Web Console was disabled.
Login is currently disabled because the license could not be determined.
then I Installed a basic license and I tried to change elastic
password
curl -XPOST 'hostname:port/_xpack/security/user/elastic/_password?pretty' -H 'Content-Type: application/json' -d'
{
"password": "mypassword"
}'
but I got the bellow error.
{
"error" : {
"root_cause" : [
{
"type" : "security_exception",
"reason" : "current license is non-compliant for [security]",
"license.expired.feature" : "security"
}
],
"type" : "security_exception",
"reason" : "current license is non-compliant for [security]",
"license.expired.feature" : "security"
},
"status" : 403
}
for now how could I change the default elastic
password?
thanks.