How to configure cassandra for remote connection

前端 未结 4 1352
囚心锁ツ
囚心锁ツ 2020-12-24 15:16

I am trying to configure Cassandra Datastax Community Edition for remote connection on windows,

Cassandra Server is installed on a Windows 7 PC, With the lo

4条回答
  •  孤城傲影
    2020-12-24 16:21

    How about this:

    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]"
    

    reference: https://gist.github.com/andykuszyk/7644f334586e8ce29eaf8b93ec6418c4

提交回复
热议问题