<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Python-boto SSLerror in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Python-boto-SSLerror/m-p/660145#M101305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have installed python-boto in yocto image and run python script to store a file in s3 bucket of AWS. But I am getting SSL certificate error, can anyone tell me what is the root cause of this error. Here is the log of python script execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: test_aws (__main__.awsTestCase)&lt;BR /&gt;----------------------------------------------------------------------&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt; File "test_aws.py", line 12, in test_aws&lt;BR /&gt; self.key = self.s3.get_bucket('newfw').new_key(self.filename)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 506, in get_bucket&lt;BR /&gt; return self.head_bucket(bucket_name, headers=headers)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 525, in head_bucket&lt;BR /&gt; response = self.make_request('HEAD', bucket_name, headers=headers)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 668, in make_request&lt;BR /&gt; retry_handler=retry_handler&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/connection.py", line 1071, in make_request&lt;BR /&gt; retry_handler=retry_handler)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/connection.py", line 1030, in _mexe&lt;BR /&gt; raise ex&lt;BR /&gt;SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if anyone has any idea about this then provide me solution. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2017 10:30:17 GMT</pubDate>
    <dc:creator>devendrasinghba</dc:creator>
    <dc:date>2017-02-01T10:30:17Z</dc:date>
    <item>
      <title>Python-boto SSLerror</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Python-boto-SSLerror/m-p/660145#M101305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have installed python-boto in yocto image and run python script to store a file in s3 bucket of AWS. But I am getting SSL certificate error, can anyone tell me what is the root cause of this error. Here is the log of python script execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: test_aws (__main__.awsTestCase)&lt;BR /&gt;----------------------------------------------------------------------&lt;BR /&gt;Traceback (most recent call last):&lt;BR /&gt; File "test_aws.py", line 12, in test_aws&lt;BR /&gt; self.key = self.s3.get_bucket('newfw').new_key(self.filename)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 506, in get_bucket&lt;BR /&gt; return self.head_bucket(bucket_name, headers=headers)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 525, in head_bucket&lt;BR /&gt; response = self.make_request('HEAD', bucket_name, headers=headers)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/s3/connection.py", line 668, in make_request&lt;BR /&gt; retry_handler=retry_handler&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/connection.py", line 1071, in make_request&lt;BR /&gt; retry_handler=retry_handler)&lt;BR /&gt; File "/usr/lib/python2.7/site-packages/boto/connection.py", line 1030, in _mexe&lt;BR /&gt; raise ex&lt;BR /&gt;SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if anyone has any idea about this then provide me solution. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 10:30:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Python-boto-SSLerror/m-p/660145#M101305</guid>
      <dc:creator>devendrasinghba</dc:creator>
      <dc:date>2017-02-01T10:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python-boto SSLerror</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Python-boto-SSLerror/m-p/660146#M101306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try to disable SSL certificate verification. I mean you can use something like this&lt;BR /&gt;&lt;SPAN&gt;requests.get('&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fdomain.com%2F%27%2Cverify%3DFalse" rel="nofollow" target="_blank"&gt;https://domain.com/',verify=False&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;instead of&lt;BR /&gt;&lt;SPAN&gt;requests.get('&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fdomain.com%2F%27%2Cverify%3DTrue" rel="nofollow" target="_blank"&gt;https://domain.com/',verify=True&lt;/A&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Victor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 02:20:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Python-boto-SSLerror/m-p/660146#M101306</guid>
      <dc:creator>b36401</dc:creator>
      <dc:date>2017-02-03T02:20:45Z</dc:date>
    </item>
  </channel>
</rss>

