Database/Cassandra

[Cassandra] 원격(remote), 로컬(local) 동시 접속

bisi 2020. 5. 22. 13:14

 

카산드라 운영시, 원격 서버에 카산드라를 설치하고 로컬에서 CQL쉘을 실행하거나 동시에 접속하고 싶은 경우가 있다. 

bin/cassandra.yaml 파일의 옵션을 아래와 같이 수정하면 원격에 있는 카산드라도 로컬에서 접속 가능하다.

 

 

1. 수정 항목 

rpc_address: 0.0.0.0
broadcast_rpc_address: 192.168.0.2
listen_address: 192.168.0.2
seeds : 192.168.0.2 

 

2. 추가 항목 

start_rpc: true

 

 

수정 항목 및 추가 항목을 yaml에 적용 후,

카산드라를 재 실행하면 카산드라가 어디 있든, 로컬, 원격 접속 모두 가능하다.

 

 

 

https://docs.datastax.com/en/archived/cassandra/3.0/cassandra/configuration/configCassandra_yaml.html#configCassandra_yaml__QuickStartProps