码迷,mamicode.com
首页 > 其他好文 > 详细

Cassandra 配制 cassandra.yaml

时间:2016-12-08 11:54:12      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:默认账户   超级用户   ica   yaml   权限   cat   创建   需要   auth   

一、设置用户名和密码

修改cassandra.yaml配置文件

把默认的

authenticator: AllowAllAuthenticator

改成

authenticator: PasswordAuthenticator

 

如果你需要登陆进去以后查看修改权限之类,需要修改

authorizer: AllowAllAuthorizer

authorizer: CassandraAuthorizer

 

启动cassandra

cql连接,cassandra是默认账户和密码

./cqlsh -u cassandra -p cassandra ip port

 

创建用户

CREATE USER myusername WITH PASSWORD ‘mypassword‘ SUPERUSER ;

这里用户有两种,一个是superuser (超级用户),一种是nosuperuser(普通用户)

 

二、设置连接IP:

rpc_address: 202.173.9.28

 

三、设置完用户名,密码,IP后的登录方法

 cqlsh 服务IP -u 用户名 -p 密码
 cqlsh 202.173.9.28 -u knet -p abc123

 

Cassandra 配制 cassandra.yaml

标签:默认账户   超级用户   ica   yaml   权限   cat   创建   需要   auth   

原文地址:http://www.cnblogs.com/feiyun126/p/6144187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!