新手在这里,
我试图让卡桑德拉弄湿我的脚。听起来很顽皮!
我在运行LAMP堆栈的VM上安装了Cassandra。 Linux的味道是Debian。
我的本机Windows机器上有一堆Python脚本,我想转换为查询Cassandra。
我运行典型的:
import cql
con= cql.connect(host="XX.XX.X.XX", port=9160, keyspace="mykeyspace")
cur=con.cursor()
result=cur.execute("select * from users")
我最终得到了这个错误。
thrift.transport.TTransport.TTransportException:无法连接到XX.X.X.XX:9160
我能够使用cqlsh在本地查询,没有任何问题。
我将cassandra.yaml中rpc_address参数的地址更改为服务器地址,但仍然没有运气。
我可能做错了什么?
我对Linux有点新意,请保持简单。