elasticsearch中手动创建索引失败

项目场景:

想通过kibana的dev tool工具或者cerebro工具的rest来手动创建索引


问题描述

创建失败,错误代码403,错误提示:“reason”: “action [indices:admin/create] is unauthorized for user [分配的es用户名]”}
报错提示:

{ 
"error": {
"root_cause":[
{
"type" :"security_exception",
"reason": "action [indices:admin/create] is unauthorized for user [es用户名]"
}
],
"type": "security _exception",
"reason": "action [indices:admin/create] is unauthorized for user [es用户名]"
},
"status" : 403
}


原因分析:

每个用户在分配用户和角色时被固定了索引格式,如果你的请求操作的目标索引不存在于es中,或者索引的格式与分配的格式不一致,就会出现如上提示(仅仅是我自己遇见过的情况,不排除还有其他原因导致此类报错的出现)。


解决方案:

修改你要创建的索引名称格式与给定的索引格式保持一致,即可解决。

你可能感兴趣的:(elasticsearch)