Advertisement
Guest User

Untitled

a guest
Aug 9th, 2013
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .boto file contents:
  2.  
  3. [Credentials]
  4. aws_access_key_id = ANBVWD98KPLA1OM6S84I
  5. aws_secret_access_key = QFvXqyvCNx9tBPobZtcoG2I0jfblPFTtuN9+Nrzo
  6.  
  7. boto trace
  8.  
  9. Python 2.7.4 (default, Apr 19 2013, 18:28:01)
  10. [GCC 4.7.3] on linux2
  11. Type "help", "copyright", "credits" or "license" for more information.
  12. >>> import boto
  13. >>> import time
  14. >>> boto.set_stream_logger('boto')
  15. >>> s3 = boto.connect_s3(host='copernico-vm2.keplerdata.com')
  16. >>> bucket = s3.create_bucket('boto-demo-%s' %int(time.time()))
  17. 2013-08-09 19:03:21,901 boto [DEBUG]:path=/
  18. 2013-08-09 19:03:21,901 boto [DEBUG]:auth_path=/boto-demo-1376089401/
  19. 2013-08-09 19:03:21,902 boto [DEBUG]:Method: PUT
  20. 2013-08-09 19:03:21,902 boto [DEBUG]:Path: /
  21. 2013-08-09 19:03:21,902 boto [DEBUG]:Data:
  22. 2013-08-09 19:03:21,902 boto [DEBUG]:Headers: {}
  23. 2013-08-09 19:03:21,902 boto [DEBUG]:Host: boto-demo-1376089401.copernico-vm2.keplerdata.com
  24. 2013-08-09 19:03:21,902 boto [DEBUG]:establishing HTTPS connection: host=boto-demo-1376089401.copernico-vm2.keplerdata.com, kwargs={}
  25. 2013-08-09 19:03:21,902 boto [DEBUG]:Token: None
  26. 2013-08-09 19:03:21,902 boto [DEBUG]:StringToSign:
  27. PUT
  28.  
  29.  
  30. Fri, 09 Aug 2013 23:03:21 GMT
  31. /boto-demo-1376089401/
  32. 2013-08-09 19:03:21,906 boto [DEBUG]:encountered SSLError exception, reconnecting
  33. 2013-08-09 19:03:21,906 boto [DEBUG]:establishing HTTPS connection: host=boto-demo-1376089401.copernico-vm2.keplerdata.com, kwargs={}
  34. 2013-08-09 19:03:22,707 boto [DEBUG]:Token: None
  35. 2013-08-09 19:03:22,707 boto [DEBUG]:StringToSign:
  36. PUT
  37.  
  38.  
  39. Fri, 09 Aug 2013 23:03:21 GMT
  40. /boto-demo-1376089401/
  41. 2013-08-09 19:03:22,711 boto [DEBUG]:encountered SSLError exception, reconnecting
  42. 2013-08-09 19:03:22,711 boto [DEBUG]:establishing HTTPS connection: host=boto-demo-1376089401.copernico-vm2.keplerdata.com, kwargs={}
  43. 2013-08-09 19:03:23,076 boto [DEBUG]:Token: None
  44. 2013-08-09 19:03:23,076 boto [DEBUG]:StringToSign:
  45. PUT
  46.  
  47.  
  48. Fri, 09 Aug 2013 23:03:21 GMT
  49. /boto-demo-1376089401/
  50. 2013-08-09 19:03:23,079 boto [DEBUG]:encountered SSLError exception, reconnecting
  51. 2013-08-09 19:03:23,079 boto [DEBUG]:establishing HTTPS connection: host=boto-demo-1376089401.copernico-vm2.keplerdata.com, kwargs={}
  52. ^CTraceback (most recent call last):
  53. File "<stdin>", line 1, in <module>
  54. File "/usr/lib/python2.7/dist-packages/boto/s3/connection.py", line 414, in create_bucket
  55. data=data)
  56. File "/usr/lib/python2.7/dist-packages/boto/s3/connection.py", line 450, in make_request
  57. override_num_retries=override_num_retries)
  58. File "/usr/lib/python2.7/dist-packages/boto/connection.py", line 829, in make_request
  59. return self._mexe(http_request, sender, override_num_retries)
  60. File "/usr/lib/python2.7/dist-packages/boto/connection.py", line 785, in _mexe
  61. time.sleep(next_sleep)
  62. KeyboardInterrupt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement