Skip to content

Instantly share code, notes, and snippets.

@andykuszyk
Last active March 6, 2025 18:26
Show Gist options
  • Save andykuszyk/7644f334586e8ce29eaf8b93ec6418c4 to your computer and use it in GitHub Desktop.
Save andykuszyk/7644f334586e8ce29eaf8b93ec6418c4 to your computer and use it in GitHub Desktop.
Setting up Cassandra for remote access

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]"
@DivyeshChhabra
Copy link

It gave me the following error:
Listening on address: (/[node-ip]:7000), nic: null, encryption: unencrypted
failed to bind to: /[node-ip]:7000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment