R&D/NoSQL

Cassandra 설치

sunshout 2015. 5. 18. 14:30

Debian 계열에서 설치

/etc/apt/sources.list 에 추가

소스 업데이트 수행

apt-get update

 

apt-get update 를 수행하면 GPG 관련 에러가 발생함. PUBLIC_KEY 가 없어서 나옴

/etc/apt/apt.conf 에 추가

APT { Get { AllowUnauthenticated "1"; }; };

 

설치

apt-get updateapt-get install cassandra

 

실행

service cassandra start