AWS BOTO : No handler After configuration

ⅰ亾dé卋堺 提交于 2019-12-20 07:48:09

问题


I'm deploying my Django application on ec2 on AWS.

I did configuration setting up ~/.boto and finally succeed in 'python manage.py collectstatic'.

If there is an error, then error is caused! (I know because I solved it by setting up ~/.boto configuration file!).

But after configuration , when I query my image file at S3 mapped to my imageField model, it shows the error message below:

No handler was ready to authenticate. 1 handlers were checked. ['HmacAuthV1Handler'] Check your credentials

I think I made it authentication, but why is this message occuring?


回答1:


Using a role is absolutely the correct way to handle authentication in EC2 to AWS. Putting long term credentials on the machine is a disgusting alternative. Assuming you're using a standard SDK, ( and boto absolutely is), the SDK will automatically use the role's temporary credentials to authenticate, so all you have to do is launch the instance with an "instance profile" specifying a role, and you get secure credentials delivery for free.

You'll have to replace your server to do so but_being able to recreate servers is fundamental to success in aws anyway. The sooner you start thinking that way, the better the cloud will work for you.

Once the role is attached to the instance, the policies defining the role's permission can be modified dynamically. So you don't need to get the permissions sorted out before creating the role.

At the high level, you specify a role at instance creation time. The EC2 console can facilitate the process of creating a role, allowing the EC2 service to access it, and specifying at instance creation time.

http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html provides detailed instructions.



来源:https://stackoverflow.com/questions/41201422/aws-boto-no-handler-after-configuration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!