Skip to content

Instantly share code, notes, and snippets.

@andykuszyk
Last active March 6, 2025 18:26
Show Gist options
  • Select an option

  • Save andykuszyk/7644f334586e8ce29eaf8b93ec6418c4 to your computer and use it in GitHub Desktop.

Select an option

Save andykuszyk/7644f334586e8ce29eaf8b93ec6418c4 to your computer and use it in GitHub Desktop.

Revisions

  1. andykuszyk revised this gist Aug 3, 2017. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion Setting up Cassandra for remote access.md
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,9 @@ Make these changes in the `cassandra.yaml` config file:

    `start_rpc: true`

    `rpc_address: [node-ip]`
    `rpc_address: 0.0.0.0`

    `broadcast_rpc_address: [node-ip]`

    `listen_address: [node-ip]`

  2. andykuszyk revised this gist Aug 3, 2017. 1 changed file with 9 additions and 3 deletions.
    12 changes: 9 additions & 3 deletions Setting up Cassandra for remote access.md
    Original file line number Diff line number Diff line change
    @@ -1,8 +1,14 @@
    Make these changes in the `cassandra.yaml` config file:

    `start_rpc: true`

    `rpc_address: [node-ip]`

    `listen_address: [node-ip]`

    ```
    start_rpc: true
    rpc_address: [node-ip]
    listen_address: [node-ip]
    seed_provider:
    - class_name: ...
    - seeds: "[node-ip]"
    ```

  3. andykuszyk created this gist Aug 3, 2017.
    8 changes: 8 additions & 0 deletions Setting up Cassandra for remote access.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    Make these changes in the `cassandra.yaml` config file:

    ```
    start_rpc: true
    rpc_address: [node-ip]
    listen_address: [node-ip]
    ```