我正在尝试安装Cassandra 3.7。 当我检查bin / nodetool -f它显示
.description-container {
width:1px;height:1px;position:relative;
}
#tooltip1:hover .description {
display:block;
width:10em;
position:absolute;
left:-4em;
height:auto;
}
.tooltip{
width:5%;
height: 6%;
}
但是当我尝试运行bin / cqlsh时,显示错误
.tooltip .description-container {
width:1px;
height:1px;
}
#tooltip1:hover + .description-container #description1 {
display:block;
width:10em;
position:absolute;
height:auto;
top: 36%;
left: 25%;
}
#tooltip1 {
top: 31%;
}
请帮帮我。
答案 0 :(得分:2)
我不确定您使用的操作系统,但是我们遇到了与Ubuntu Server 16.04 LTS类似的问题。当我们使用Ubuntu Server 14.04 LTS时,工作正常。然后我在Cassandra的IRC频道上获得了指针。这实际上被报告为bug CASSANDRA-11850。如果您按照评论中提到的解决方法进行操作,则可以解决此问题。
为了快速参考,我总结了一些步骤 1)从Cassandra Drivers更新python Cassandra驱动程序 2)在使用' cqlsh'连接到Cassandra之前export CQLSH_NO_BUNDLED = true。然后运行' cqlsh'。
这应该可以解决您的问题。
如果有帮助,请告诉我。