카산드라 운영시, 원격 서버에 카산드라를 설치하고 로컬에서 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에 적용 후,
카산드라를 재 실행하면 카산드라가 어디 있든, 로컬, 원격 접속 모두 가능하다.
'Database > Cassandra' 카테고리의 다른 글
[Cassandra] Import, Export csv file using CQL COPY command (0) | 2020.05.23 |
---|---|
[Cassandra] Table, Column, Partition Key Clustering Key (0) | 2020.05.21 |
[Cassandra][java] PreparedStatement vs Statement (0) | 2020.05.20 |