web-dev-qa-db-fra.com

cqlsh ERREUR: root: le code pour le hachage md5 est introuvable

Je ne peux pas utiliser cqlsh sur mac. ci-dessous est mes informations système et journal des erreurs que je reçois.

  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

L'erreur venait du fait que python (peut être un problème de dépendance) installé via brew. J'ai fait les étapes ci-dessous

1) Désinstallation de brew --ignore-dependencies python @ 2
2) installez python de https://www.python.org/getit/

ci-dessous 4 étapes suggérées par mihgen sur le lien de référence github ci-dessous
1) brew install openssl
2) lien de brassage openssl --force
3) brew désinstaller python
4) brew install python --with-brewed-openssl

référence: https://github.com/Homebrew/legacy-homebrew/issues/22816

0
nagendra patod