yum|コマンドエラー「pycurl.so:undefined symbol:CRYPTO_set_locking_callback」

1878 ワード

文書ディレクトリ

  • エラーメッセージ
  • 処理方法
  • エラーメッセージ


    すべてのyumコマンドが間違っています!
    次のようなエラーが発生しました.
    There was a problem importing one of the Python modules
    required to run yum. The error leading to this problem was:
    
    /usr/lib64/python2.6/site-packages/pycurl.so: undefined symbol: CRYPTO_set_locking_callback
    
    Please install a package which provides this module, or
    verify that the module is installed correctly.
    
    It's possible that the above module doesn't match the
    current version of Python, which is:
    2.6.6 (r266:84292, Sep  4 2013, 07:46:00)
    [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)]
    
    If you cannot solve this problem yourself, please go to
    the yum faq at:
    http://yum.baseurl.org/wiki/Faq
    

    処理方法

  • エラーメッセージが表示されたライブラリ
  • をチェック
    ldd /usr/lib64/python2.7/site-packages/pycurl.so
    
    ldconfig -p -N -X | grep curl
    
  • サーバには他のlibcurl.*があります.ライブラリの重複による
  • であるはずです.
    find / -name 'libcurl.*'
    

    多くのlibcurlが見つかります
  • バックアップ対応libcurl.*を削除
  • cd /usr/local/curl/lib/
    mkdir back
    mv libcurl.* back
    
  • yumライブラリ
  • を更新
    yum clean all 
    yum makecache fast