阅读全文
div>
Cassandra 用户名密码设置,我使用的cassandra版本为3.11.1。本篇博客不仅仅演示Cassandra 用户密码的设置,还包括Cassandra 用户的一些更新删除的操作。下面一起来看看:
修改配置文件
默认cassandra是不需要账号密码的,授权信息默认如下配置
1
2authenticator: AllowAllAuthenticator
authorizer: AllowAllAuthorizer修改
conf/cassandra.yaml
配置文件,然后重启1
2authenticator: PasswordAuthenticator
authorizer: CassandraAuthorizer
阅读全文
div>
前面已经说了一种访问Cassandra
的一种方式CQL,本篇博客还讲解一下其他的方式访问,主要是以Java API的方式,当然它是支持很多语言的,看看下图就知道了:
阅读全文
div>
本篇博客主要讲Cassandra的基本操作,主要是通过cqlsh
客户端命令。这个也是我们常用的基本操作,后面再会讲解一下通过java api的方式操作Cassandra。
下面让我们一起来熟悉吧!
启动cqlsh
启动cqlsh
,如果rpc_address不是设置为0.0.0.0,直接输入cqlsh是会拒绝连接的
Connection error: (‘Unable to connect to any servers’, {‘127.0.0.1’: error(111, “Tried connecting to [(‘127.0.0.1’, 9042)]. Last error: Connection refused”)})需要指定ip,具体操作如下图(我们上篇博客设置为节点的ip)
阅读全文
div>
本篇博客主要讲Cassandra的配置文件,主要是说的cassandra.yaml
里面的一些配置项。这里会把主要的都列出来,以供参考,后续有新的东西也会持续补充更新。
Cassandra配置文件
- 在0.7版本之前,cassandra的配置文件是
conf/storage-conf.xml
文件。0.7之后是conf/cassandra.yaml
文件 - 可以通过-Dcassandra.conf指定需要加载的配置文件,例如:
1
2
3
4
-Dcassandra.config=alternate-cassandra.yaml
-Dcassandra.config=http://www.example.com/remote-cassandra.yaml
-Dcassandra.config=file:///home/me/external-local-cassandra.yaml
阅读全文
div>
当前网速较慢或者你使用的浏览器不支持博客特定功能,请尝试刷新或换用Chrome、Firefox等现代浏览器