0Day Forums
install multi-node cassandra in windows - Printable Version

+- 0Day Forums (https://0day.red)
+-- Forum: Coding (https://0day.red/Forum-Coding)
+--- Forum: Database (https://0day.red/Forum-Database)
+---- Forum: Cassandra (https://0day.red/Forum-Cassandra)
+---- Thread: install multi-node cassandra in windows (/Thread-install-multi-node-cassandra-in-windows)



install multi-node cassandra in windows - saltfoot223315 - 07-30-2023

Is there any detail step-by-step document to address the multi-node cassandra installation in Windows? I read some documents/blogs and tried on Window7 workstations/Windows2008 servers but not be able to establish connection from the 2nd node to the 1st node.


RE: install multi-node cassandra in windows - berkow143 - 07-30-2023

When I was setting up my first cluster on windows I found this [blogpost][1] to be excellent. It covers many aspects of the setup including:

- Firewall / Networking issues.
- Running Cassandra as a service.
- Monitoring and maintenance.

If you want to create a complete setup with using just cassandra have a look at [**this blog**][2].

But to setup a multi-node cluster, you basically need to have the [correct ports open][3] on your servers. When it comes to configuration you are basically going to have identical **cassandra.yaml** configs accross all your nodes, with the same seeds list, and the only two fields need to be changed are the `listen_address` and possibly `rpc_address` (although you could just listen an all interfaces for the `rpc_address` by setting it to:

rpc_address: 0.0.0.0


[1]:

[To see links please register here]

[2]:

[To see links please register here]

[3]:

[To see links please register here]