web-dev-qa-db-ja.com

cqlsh ERROR:root:ハッシュmd5のコードが見つかりませんでした

Macでcqlshを使用できません。以下は私のシステム情報とエラーログです。

  os        : mac  
  cassandra : Apache-cassandra-3.9   
  python    :2.7.16  
  jave .    : 1.8 
cqlsh 
$ cqlsh
ERROR:root:code for hash md5 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 147, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type md5
ERROR:root:code for hash sha1 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 147, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha1
ERROR:root:code for hash sha224 was not found.
Traceback (most recent call last):
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 147, in <module>
    globals()[__func_name] = __get_hash(__func_name)
  File "/usr/local/Cellar/python@2/2.7.16/Frameworks/Python.framework/Versions/2.7/lib/python2.7/hashlib.py", line 97, in __get_builtin_constructor
    raise ValueError('unsupported hash type ' + name)
ValueError: unsupported hash type sha224
ERROR:root:code for hash sha256 was not found.
5
nagendra patod

エラーは、brew経由でインストールされたpython(依存関係の問題である可能性があります)が原因で発生していました。以下の手順を実行しました

1)brew uninstall --ignore-dependencies python @ 2
2)インストールpython from https://www.python.org/getit/

githubの参照リンクの下にあるmihgenによって提案された4つの手順の下
1)brew install openssl
2)brew link openssl --force
3)pythonをアンインストール
4)brew install python --with-brewed-openssl

参照: https://github.com/Homebrew/legacy-homebrew/issues/22816

0
nagendra patod