Usman Khair
Usman Khair

Reputation: 21

cassandra installation on windows 10 , unable to connect to server

i have installed "datastax-ddc-64bit-3.9.0.msi" on windows 10, when i run Cassandra CQL Shell i have got this error.

Connection error: ('Unable to connect to any servers', {'127.0.0.1': error(10061, "Tried connecting to [('127.0.0.1', 9042)]. Last error: No connection could be made because the target machine actively refused it")})

Upvotes: 0

Views: 468

Answers (1)

Shoban Sundar
Shoban Sundar

Reputation: 573

What is the rpc_address configured? And connect CQL with that hostname/IP. E.g.

cqlsh <rpc_address> <native_transport_port>

Check the above values in your Cassandra.yaml file.

Upvotes: 0

Related Questions