Cassandra 配制 cassandra.yaml
Posted 网络终结者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cassandra 配制 cassandra.yaml相关的知识,希望对你有一定的参考价值。
一、设置用户名和密码
修改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的主要内容,如果未能解决你的问题,请参考以下文章