2

Ubuntu サーバーで Google API クライアント ライブラリを使用しています。スクリプトは自分のマシンでは問題なく動作しますが、サーバーでは SSLError で失敗します。

File "/home/default/bigbluebutton/youtube/uploader/uploadvideo.py", line 78, in authorize
    credentials = flow.step2_exchange(code)        
  File "/usr/local/lib/python2.7/dist-packages/oauth2client/util.py", line 132, in positional_wrapper
    return wrapped(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/oauth2client/client.py", line 1283, in step2_exchange
    headers=headers)
  File "/usr/local/lib/python2.7/dist-packages/httplib2/__init__.py", line 1570, in request
    (response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
  File "/usr/local/lib/python2.7/dist-packages/httplib2/__init__.py", line 1317, in _request
    (response, content) = self._conn_request(conn, request_uri, method, body, headers)
  File "/usr/local/lib/python2.7/dist-packages/httplib2/__init__.py", line 1252, in _conn_request
    conn.connect()
  File "/usr/local/lib/python2.7/dist-packages/httplib2/__init__.py", line 1021, in connect
    self.disable_ssl_certificate_validation, self.ca_certs)
  File "/usr/local/lib/python2.7/dist-packages/httplib2/__init__.py", line 80, in _ssl_wrap_socket
    cert_reqs=cert_reqs, ca_certs=ca_certs)
  File "/usr/lib/python2.7/ssl.py", line 381, in wrap_socket
    ciphers=ciphers)
  File "/usr/lib/python2.7/ssl.py", line 141, in __init__
    ciphers)
ssl.SSLError: [Errno 185090050] _ssl.c:340: error:0B084002:x509 certificate routines:X509_load_cert_crl_file:system lib

この問題を解決するにはどうすればよいですか? SSLに何か問題がありますか?

4

2 に答える 2

1

私にとって有効な解決策は、cacerts.txt の権限を (root ではなく) 自分のユーザーに変更することです。または、ルートとして実行します。ファイルは /usr/local/lib/python2.7/dist-packages/httplib2/cacerts.txt にあります。

于 2013-08-28T15:46:57.690 に答える
0

私は同じ問題を抱えていました。私が推測する理由は、適切な証明書をロードできなかったためです。以下は、証明書をロードする httplib2/ init .py からのコード スニペットです。

    try:
        # Users can optionally provide a module that tells us where the CA_CERTS
        # are located.
        import ca_certs_locater
        CA_CERTS = ca_certs_locater.get()
    except ImportError:
        # Default CA certificates file bundled with httplib2.
        CA_CERTS = os.path.join(
            os.path.dirname(os.path.abspath(__file__ )), "cacerts.txt")

httplib2 /init.py場所: /usr/local/lib/python2.7/dist-packages/httplib2-0.8-py2.7.egg/httplib2/init.py

上記のコードでは、ca_certs_locater は、httplib2 パッケージの認証局ファイルではなく、ベース OS から認証局ファイルをロードします。ca_certs_locaterモジュールが存在しない場合、ファイル cacerts.txt から証明書をロードします。

私の場合、モジュールは存在しなかったため、ファイル「cacerts.txt」からロードしていましたが、存在するかどうかはわかりませんでした。モジュールca_certs_locaterをインストールすることでこの問題を修正しました。

于 2013-09-26T12:36:12.277 に答える