admin管理员组文章数量:1333173
I’m trying to retrieve archived data from AWS Glacier and move it to an S3 bucket, but I’m encountering issues during the process. Here’s what I’ve done so far:
An error occurred (AccessDeniedException) when calling the InitiateJob operation: User: arn:aws:iam::806293447701:user/salman is not authorized to perform: glacier:InitiateJob on resource: arn:aws:glacier:us-west-2:AKIA3XOWVUQKSRK6R5N4:vaults/bitcoin-class
Here’s an example of my CLI command:
aws glacier initiate-job --account-id AKIA3XOWVUQKSRK6R5N4 --vault-name bitcoin-class --job-parameters file://inventory-retrieval.json
In Addition, I have already included the 'Permission Policies' for this user. Policy name: AmazonGlacierFullAccess & AmazonS3FullAccess.
Questions:
Is there a specific configuration I might have overlooked in the restore process?
How can I debug why the data is not appearing in the S3 bucket?
Are there additional steps needed for transferring restored data to S3?
Any guidance or suggestions would be greatly appreciated!
I’m trying to retrieve archived data from AWS Glacier and move it to an S3 bucket, but I’m encountering issues during the process. Here’s what I’ve done so far:
An error occurred (AccessDeniedException) when calling the InitiateJob operation: User: arn:aws:iam::806293447701:user/salman is not authorized to perform: glacier:InitiateJob on resource: arn:aws:glacier:us-west-2:AKIA3XOWVUQKSRK6R5N4:vaults/bitcoin-class
Here’s an example of my CLI command:
aws glacier initiate-job --account-id AKIA3XOWVUQKSRK6R5N4 --vault-name bitcoin-class --job-parameters file://inventory-retrieval.json
In Addition, I have already included the 'Permission Policies' for this user. Policy name: AmazonGlacierFullAccess & AmazonS3FullAccess.
Questions:
Is there a specific configuration I might have overlooked in the restore process?
How can I debug why the data is not appearing in the S3 bucket?
Are there additional steps needed for transferring restored data to S3?
Any guidance or suggestions would be greatly appreciated!
Share Improve this question asked Nov 20, 2024 at 17:01 Salman KhalidSalman Khalid 11 bronze badge1 Answer
Reset to default 0Try to use this command and make sure that the user has the InitiateJob permission;
aws iam simulate-principal-policy --policy-source-arn arn:aws:iam::806293447701:user/salman --action-names glacier:InitiateJob --resource-arns arn:aws:glacier:us-west-2:806293447701:vaults/bitcoin-class
if it shows Deny, inspect explicit Deny policies, SCPs, or boundary conditions that might restrict this action.
版权声明:本文标题:amazon web services - Unable to Retrieve Data from AWS Glacier to S3 Bucket: Errors Encountered - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742342695a2456919.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论