Helo Experts,
We are using elasticsearch basic license. I need to create users (any type of authentication supported ) by ELS in basic licensing would work . Please suggest how to resolve this.
Requirement is to have user access by indexes.
curl -XPOST -u elastic ':9200/_xpack/security/user/apprw?pretty=true' -H "Content-Type: application/json" -d '{
"password" : "*",
"full_name" : "app Read Write",
"roles" : [ "admin" ]
}'
{
"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
}
/_xpack/license
{
"license" : {
"status" : "active",
"uid" : "9cb85de6-9907-440b-88db-37c3a118ab63",
"type" : "basic",
"issue_date" : "2018-08-22T22:06:55.959Z",
"issue_date_in_millis" : 1534975615959,
"max_nodes" : 1000,
"issued_to" : "******",
"issuer" : "elasticsearch",
"start_date_in_millis" : -1
}
}