ALTER USER
ALTER USER user_name
WITH PASSWORD 'password' NOSUPERUSER | SUPERUSER;
CREATE USER
CREATE USER user_name
WITH PASSWORD 'password' NOSUPERUSER | SUPERUSER;
DROP USER
DROP USER user_name;
LIST USERS
LIST USERS;
반응형
'Cassandra' 카테고리의 다른 글
Cassandra - CQL 데이터 타입 (0) | 2013.05.24 |
---|---|
Cassandra - Keyspace 생성, 관리 (CQL) (0) | 2013.05.24 |
Cassandra - 로그인 설정 (0) | 2013.05.24 |
Cassandra - Python 2.X (pycassa)를 이용하여 데이터 조회 (0) | 2013.04.10 |
Cassandra - Python 2.X (pycassa)를 이용하여 데이터 쓰기 (0) | 2013.04.10 |