gpt4 book ai didi

node.js - Nodejs - Cassandra 客户端错误 : All connections are unhealthy

转载 作者:太空宇宙 更新时间:2023-11-03 22:39:16 25 4
gpt4 key购买 nike

当我尝试使用 cassandra-client 从 cassandra 检索/更新数据时,我不断收到此错误。

{ [Error: All connections are unhealthy.]
connectionInfo:
{ host: 'localhost',
port: 9160,
keyspace: 'keyspace1',
user: undefined,
pass: undefined,
use_bigints: false,
timeout: 4000,
log_time: false,
staleThreshold: 10000 } }

不知道这个错误意味着什么。

最佳答案

该错误表明您的客户端无法连接到本地主机端口 9160 上的指定服务器。

由于这是本地主机,您很可能可以排除任何防火墙问题。

你能做什么

<强>1。检查您的服务器是否正在运行

这应该向您显示一个或多个进程(除了您刚刚执行的 grep 进程

ps aux | grep "cassandra" 

<强>2。验证端口

# telnet localhost 9160
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused

坏..这表明您的配置可能有问题。就我而言,我根本没有 cassandra 服务器监听端口 9160(根本运行)

<强>3。检查您的日志文件

默认情况下,cassandra 写入文件夹 /var/log/cassandra/如果服务器出现任何问题,您很可能会在那里获得更多信息,甚至可能显示与您的 Nodejs 客户端相关的问题

<强>4。尝试另一个客户端进行调试

http://wiki.apache.org/cassandra/GettingStarted#Step_4:_Using_cassandra-cli

关于node.js - Nodejs - Cassandra 客户端错误 : All connections are unhealthy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11523567/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com