本文介绍了Cassandra'无法连接到任何服务器',错误代码10061的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的本地专用网络中有cassandra,我试图从另一台PC进行访问,但是在连接到cassandra服务器时出现此错误。
I have cassandra in my local private network and I'm trying to access from a different PC but while connecting to cassandra server I'm getting this error.
from cassandra.cluster import Cluster
cluster = Cluster(["192.168.1.170"])
session = cluster.connect()
有人可以帮助我吗?
推荐答案
尽管这不是一个好习惯,但我仍然可以为您提供帮助。
我已经通过更改 cassandra.yaml 文件解决了这个问题
Though It is not a good practises but still I can help you with.I have solved this issue by changing the "cassandra.yaml" file
- 转到/ cassandra / conf /文件夹
- 编辑此 cassandra.yaml
- 查找rpc_address,将其更改为0.0。 0.0
- 保存您的 cassandra.yaml文件
- 重新启动您的cassandra服务器
- Go to /cassandra/conf/ folder
- Edit this "cassandra.yaml"
- Look for rpc_address change it to the 0.0.0.0
- Save your "cassandra.yaml" file
- Restart your cassandra server
这将解决您的错误。如果您仍然遇到任何问题,请告诉我。
This will solve your error. Let me know If you are still facing any issue.
这篇关于Cassandra'无法连接到任何服务器',错误代码10061的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!