适应于cassandra2.0以上的版本
1、首先修改配置文件 cassandra.yaml
把默认的authenticator: AllowAllAuthenticator运行所有人登录设置为用密码登录:
authenticator: PasswordAuthenticator
2、登录cassandra创建用户
使用默认账户登录cassandra
在bin目录下执行
./cqlsh -ucassandra -pcassandra
创建用户
1 | CREATE USER myusername WITH PASSWORD 'mypassword' SUPERUSER ; |
3、使用新用户登录
删除默认帐号:
1 | DROP USER cassandra ; |
4、java使用用户名密码访问cassandra
1 2 3 4 | Cluster cluster = Cluster.builder() .addContactPoint("192.168.22.161") .withCredentials("myusername", "mypassword") .build(); |
除非注明,赵岩的博客文章均为原创,转载请以链接形式标明本文地址
本文地址:https://zhaoyanblog.com/archives/307.html