答案 0 :(得分:3)
试试这个:
cqlsh 10.138.0.3 9042
答案 1 :(得分:2)
$ cqlsh
Connection error: ('Unable to connect to any servers', {'127.0.0.1':
首先,正如我向你提到的那样in this answer,使用cqlsh连接到127.0.0.1根本不适用于多节点集群。您需要指定nodetool status
命令结果中显示的IP地址。
接下来,错误消息的第二部分应该给出一个很大的线索:
AuthenticationFailed('Remote end requires authentication'),)})
启用身份验证后,您需要提供有效的用户名和密码才能登录。如果您尚未创建任何新用户,则用户名和密码都将默认为" cassandra。"
$ cqlsh 10.138.0.3 -u cassandra -p cassandra