Hi,
I am getting the following error in the console when I am trying to create an index mapping in Elasticsearch 6.0:
{
"error": {
"root_cause": [
{
"type": "security_exception",
"reason": "action [indices:admin/create] is unauthorized for user [kibana]"
}
],
"type": "security_exception",
"reason": "action [indices:admin/create] is unauthorized for user [kibana]"
},
"status": 403
}
I am trying to create the following mapping:
PUT e1web_domain_log
{
"mappings": {
"doc": {
"properties": {
"Timestamp": {
"type": "date"
},
"Message_Type": {
"type": "keyword"
},
"Application": {
"type": "keyword"
},
"Param_X": {
"type": "keyword"
},
"Server": {
"type": "keyword"
},
"Status": {
"type": "keyword"
},
"ExecuteThread": {
"type": "integer"
},
"Queue": {
"type": "text"
},
"Kernel": {
"type": "keyword"
},
"Message_code": {
"type": "long"
},
"Param_A": {
"type": "keyword"
},
"Description": {
"type": "text"
}
}
}
}
}
I do have x-pack installed. Am I missing some security setting?