英文:
Taking snapshot from AWS Open Search for backup
问题
获取AWS Open Search的快照时使用S3和Kibana时出现以下错误 -
{
"error": {
"root_cause": [{
"type": "security_exception",
"reason": "no permissions for [cluster:admin/repository/put] and User [name=arn:aws:iam::999988887777:user/username, backend_roles=[], requestedTenant=null]"
}],
"type": "security_exception",
"reason": "no permissions for [cluster:admin/repository/put] and User [name=arn:aws:iam::999988887777:user/username, backend_roles=[], requestedTenant=null]"
},
"status": 403
}
我尝试了使用AWS文档中的一切,但无法解决此错误。
英文:
While taking snapshot from the AWS Open Search using S3 and Kibana getting the following error -
{
"error": {
"root_cause": [{
"type": "security_exception",
"reason": "no permissions for [cluster:admin/repository/put] and User [name=arn:aws:iam::999988887777:user/username, backend_roles=[], requestedTenant=null]"
}],
"type": "security_exception",
"reason": "no permissions for [cluster:admin/repository/put] and User [name=arn:aws:iam::999988887777:user/username, backend_roles=[], requestedTenant=null]"
},
"status": 403
}
I tried everything using the AWS documentation but unable to solve this error.
答案1
得分: 0
你遇到的错误表明与提供的 ARN 关联的 IAM 用户没有执行 OpenSearch 中所需操作所需的权限。要解决此问题并使用 Kibana 从 OpenSearch 到 S3 启用快照,您需要向 IAM 用户授予适当的权限。
有关说明和故障排除步骤,请参阅该中文文章 - https://medium.com/vectoscalar/how-to-trigger-snapshots-of-indices-in-aws-opensearch-and-store-them-in-s3-using-ec2-979f6c8019f0
英文:
The error you are encountering indicates that the IAM user associated with the provided ARN does not have the necessary permissions to perform the required action in OpenSearch. To resolve this issue and enable snapshots from OpenSearch to S3 using Kibana, you need to grant the appropriate permissions to the IAM user.
For instructions and troubleshooting steps, refer to the medium article - https://medium.com/vectoscalar/how-to-trigger-snapshots-of-indices-in-aws-opensearch-and-store-them-in-s3-using-ec2-979f6c8019f0
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论