You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cloudstack.apache.org by Ching Lue <cn...@haystack.mit.edu> on 2015/03/04 20:24:34 UTC

Using Boto to Interface with AWS compatible API

HI,

I had running the EC2 Boto example1 which is posted on
http://docs.cloudstack.apache.org/projects/cloudstack-installation/en/latest/optional_installation.html?highlight=ec2#supported-aws-api-calls

With Ubuntu and downloaded with "apt-get install python-boto", it will 
install the boto version 2.9.6,
then the above example works.

Later on I discovered that the newest boto is v2.36.0, after upgrade my 
boto tool, the above example
doesn't work any more,
I will get errors like this:

%python ec2_test.py
Traceback (most recent call last):
   File "ec2_test.py", line 33, in <module>
     main()
   File "ec2_test.py", line 24, in main
     images = conn.get_all_images()
   File "/usr/local/lib/python2.7/dist-packages/boto/ec2/connection.py", 
line 189, in get_all_images
     [('item', Image)], verb='POST')
   File "/usr/local/lib/python2.7/dist-packages/boto/connection.py", 
line 1185, in get_list
     raise self.ResponseError(response.status, response.reason, body)
boto.exception.EC2ResponseError: EC2ResponseError: 400 Bad Request
<?xml version="1.0" 
encoding="UTF-8"?><Response><Errors><Error><Code>MissingParamter</Code><Message>Missing 
required parameter - 
AWSAccessKeyId</Message></Error></Errors><RequestID>c012537e-9f74-4673-90c2-c7fa5657a322</RequestID></Response>:

Can anyone enlight me what is going on with the latest boto V2.36.

Thank you very much.

Ching Lue

Re: Using Boto to Interface with AWS compatible API

Posted by Sebastien Goasguen <ru...@gmail.com>.
On Mar 4, 2015, at 2:24 PM, Ching Lue <cn...@haystack.mit.edu> wrote:

> HI,
> 
> I had running the EC2 Boto example1 which is posted on
> http://docs.cloudstack.apache.org/projects/cloudstack-installation/en/latest/optional_installation.html?highlight=ec2#supported-aws-api-calls
> 
> With Ubuntu and downloaded with "apt-get install python-boto", it will install the boto version 2.9.6,
> then the above example works.
> 
> Later on I discovered that the newest boto is v2.36.0, after upgrade my boto tool, the above example
> doesn't work any more,
> I will get errors like this:
> 
> %python ec2_test.py
> Traceback (most recent call last):
>  File "ec2_test.py", line 33, in <module>
>    main()
>  File "ec2_test.py", line 24, in main
>    images = conn.get_all_images()
>  File "/usr/local/lib/python2.7/dist-packages/boto/ec2/connection.py", line 189, in get_all_images
>    [('item', Image)], verb='POST')
>  File "/usr/local/lib/python2.7/dist-packages/boto/connection.py", line 1185, in get_list
>    raise self.ResponseError(response.status, response.reason, body)
> boto.exception.EC2ResponseError: EC2ResponseError: 400 Bad Request
> <?xml version="1.0" encoding="UTF-8"?><Response><Errors><Error><Code>MissingParamter</Code><Message>Missing required parameter - AWSAccessKeyId</Message></Error></Errors><RequestID>c012537e-9f74-4673-90c2-c7fa5657a322</RequestID></Response>:
> 
> Can anyone enlight me what is going on with the latest boto V2.36.
> 
> Thank you very much.
> 
> Ching Lue

Don't know for your exact use case, but you might want to try:

https://registry.hub.docker.com/u/runseb/ec2stack/

which is based on:

https://github.com/BroganD1993/ec2stack

It's a different AWS compatibility layer than what you use and it might work with boto v2.36. I don't recall which version I tried it with.