cassandra安装“module”对象没有“decompress”属性

x7rlezfr  于 2021-06-14  发布在  Cassandra
关注(0)|答案(2)|浏览(313)

在Ubuntu19.04上安装了cassandra 3.11版本之后,一旦我启动命令,就会出现以下错误 cqlsh ```
root@dnilesh:/etc/cassandra# cqlsh
Connection error: ('Unable to connect to any servers', {'127.0.0.1': ProtocolError('Unexpected response during Connection setup: AttributeError("'module' object has no attribute 'decompress'",)',)})

cassandra服务已启动并正在运行,但无法连接cqlsh终端。
mqkwyuun

mqkwyuun1#

对我来说这很有效:

$ export CQLSH_NO_BUNDLED=true
$ cqlsh

在上一个cqlsh之后,出现了一个缺少cassandra驱动程序的问题,并且通过sudo pip安装。。。没有工作,我必须切换到根用户!

$ sudo su

# pip install cassandra-driver

# cqlsh
ffvjumwh

ffvjumwh2#

你可以试试 cqlsh [ip address] (用主机的ip地址替换括号)或 cqlsh $(hostname) (不需要替换)

相关问题