博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cassandra create a new user
阅读量:6440 次
发布时间:2019-06-23

本文共 709 字,大约阅读时间需要 2 分钟。

1.Configure the file cassandra.yaml

  set authenticator: PasswordAuthenticator

  the default value of authenticator is AllowAllAuthenticator

2.Loggin by the default user cassandra ,if you didn't create the user before,it will create a default user cassandra ,and the password is cassandra

  use the cqlsh

  ./cqlsh 192.168.1.201 -u cassandra

  Password:cassandra

3.Update the replication of the system_auth

  ALTER KEYSPACE system_auth WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor' : 3};

4.Create a new user

  CREATE USER myusername WITH PASSWORD 'mypassword' SUPERUSER ;

 

Now , you can use the new user information loggin for cassandra.

转载于:https://www.cnblogs.com/xxdfly/p/5644065.html

你可能感兴趣的文章
BZOJ4133 : Answer的排队
查看>>
基于Centos搭建 Mono 开发环境
查看>>
算法题:福尔摩斯的约会
查看>>
Oralce sql (+) 补充
查看>>
hdu 2665 划分树
查看>>
laravel中的plicy授权方法:
查看>>
基于R进行相关性分析--转载
查看>>
常用 cdn
查看>>
tomcat8 管理页面403 Access Denied的解决方法
查看>>
怎样避免应用冷启动
查看>>
把vux中的@font-face为base64格式的字体信息解码成可用的字体文件
查看>>
vue sync
查看>>
CentOS6下OpenLDAP+PhpLdapAdmin基本安装及主从/主主高可用模式部署记录
查看>>
Wix 安装部署教程(十一) ---QuickWix
查看>>
Spring @Value注解问题
查看>>
P1886 滑动窗口
查看>>
实施vertex compression所遇到的各种问题和解决办法
查看>>
ubuntu 12.04 rails server 时候报错 execjs
查看>>
linux下文件压缩与解压操作
查看>>
使用树莓派实现微信远程监控
查看>>