Make these changes in the cassandra.yaml
config file:
start_rpc: true
rpc_address: 0.0.0.0
broadcast_rpc_address: [node-ip]
listen_address: [node-ip]
seed_provider:
- class_name: ...
- seeds: "[node-ip]"
Make these changes in the cassandra.yaml
config file:
start_rpc: true
rpc_address: 0.0.0.0
broadcast_rpc_address: [node-ip]
listen_address: [node-ip]
seed_provider:
- class_name: ...
- seeds: "[node-ip]"
Thanks a lot for sharing this!
For me, on Cassandra 4.1.3 I got an error due to start_rpc: true
, after removing this it worked great!
If firewall is on you should allow connecting port
sudo firewall-cmd --zone=public --permanent --add-port=9042/tcp
sudo firewall-cmd --reload
(check it with
telnet 192.168.13.0 9042
)