NoSQL_Cassandra_教程五_设置Cassandra登录密码

前端之家收集整理的这篇文章主要介绍了NoSQL_Cassandra_教程五_设置Cassandra登录密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


下面的文章讲解了如何为Cassandra设置登录密码:(操作的环境为Linux 下的 Cassandra,Windows 下面存在一些问题,不知道怎么解决,cqlsh 不能登录)


0.修改配置文件 cassandra.yaml,把 authenticator: AllowAllAuthenticator改为authenticator: PasswordAuthenticator

1.重启cassandra

2.使用默认用户名cassandra和默认密码cassandra登录,./cqlsh -ucassandra -pcassandra

3.创建用户CREATE USER myusername WITH PASSWORD 'mypassword' SUPERUSER ; (NOSUPERUSER | SUPERUSER)

4.删除默认帐号:DROP USER cassandra; (为了安全)



示例


修改配置文件,将authenticator: AllowAllAuthenication 改为 PasswordAuthenticator



启动Cassandra

命令: nohup cassandra

(找不到Cassandra,使用全路径)



用默认的用户名与密码登录

Tips:用户名与密码都是Cassandra




检测刚才的账号是否添加成功

可以看见刚才的设置已经生效了










话外篇:



设置无密码登录

Linux 与 Windows


Linux:

编辑~/.cassandra/cqlshrc文件,加入下面代码,可以无密码登录CQLSH






Windows:

用户目录下新建文件夹.cassandra.,在里面新建文件cqlshrc写入




检验是否设置成功 (Linux)

可以看到root 已经不需要密码登录

原文链接:https://www.f2er.com/nosql/203601.html

猜你在找的NoSQL相关文章