项目场景:
想通过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中,或者索引的格式与分配的格式不一致,就会出现如上提示(仅仅是我自己遇见过的情况,不排除还有其他原因导致此类报错的出现)。文章来源:https://www.toymoban.com/news/detail-539576.html
解决方案:
修改你要创建的索引名称格式与给定的索引格式保持一致,即可解决。文章来源地址https://www.toymoban.com/news/detail-539576.html
到了这里,关于elasticsearch中手动创建索引失败的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!