赞
踩
1、安装Cassandra:
- 检查java版本,确保安装jdk8以上版本:
$ java -version.
[datastax]
name = DataStax Repo for Apache Cassandra
baseurl = http://rpm.datastax.com/community
enabled = 1
gpgcheck = 0
$ sudo yum install dsc30
$ sudo yum install cassandra30-tools ## Installs optional utilities.
点击链接,安装cassandra早期版本
现在只安装了单个cluster实例 ,使用下面命令操作cassandra
$ sudo service cassandra start
- 如果不存在服务,直接执行:
$ sudo /etc/init.d/cassandra start
Note: Cassandra 3.8 and later: Startup is aborted if corrupted transaction log files are found and the affected log files are logged. See the log files for information on resolving the situation.
使用 DataStax 查看 Cassandra 是否启动:
$ nodetool status
安装参考:http://docs.datastax.com/en/cassandra/3.0/cassandra/install/installRHEL.html
2、或者直接下载Cassandra
wget
http://mirrors.tuna.tsinghua.edu.cn/apache/cassandra/3.10/apache-cassandra-3.10-bin.tar.gz
tar -zxvf apache-cassandra-3.10-bin.tar.gz
sudo mv apache-cassandra-3.10 /usr/local/cassandra
sudo vi /etc/profile添加 CASSANDRA_HOME=/usr/local/cassandra
PATH=$CASSANDRA_HOME/bin:$PATHsudo source /etc/profile sudo cassandra
……一系列启动日志……新建窗口执行 nodetool status
Datacenter: datacenter1
======================= Status=Up/Down |/ State=Normal/Leaving/Joining/Moving
– Address Load Tokens Owns (effective) Host ID Rack UN 127.0.0.1 241.25 KB 256 100.0% 101d5eaf-3430-4609-a812-2aeef22f3065 rack1
3、常用命令:
启动cassabdra
sudo service cassandra start|stop|atatus
查看链接状态
nodetool status
进入cqlsh
>>cqlsh
Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 3.0.9 | CQL spec 3.4.0 | Native protocol v4] —-(cassandra版本号)
Use HELP for help.
cqlsh >>show version (查看版本号命令)
>>cqlsh -cassandra (使用cassandra用户登录cql)
查看命令
describe | desc
查看当前 cluster : describe cluster | desc cluster
查看所有 keyspace : describe cluster | desc cluster
查看指定 keyspace 内容 : describe keyspace mykeyspace; --( mykeyspace 为键空间)
查看所有 table : describe tables
查看指定 table : describe columnfamaliy mytable;| desc table mytable --( mytable 为表名)
创建 keyspace : CREATE KEYSPACE mykeyspace WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 };
Replication Factor : 复制因数。 表示一份数据在一个DC 之中包含几份。常用奇数~ 比如我们项目组设置的replication_factor=3
Replica placement strategy : 复制策略。 默认的是SimpleStrategy. 如果是单机架、单数据中心的模式,保持使用SimpleStrtegy即可。
使用 keyspace: use mykeyspace
创建 table : create table mytable ( id int primary key, name varchar, age int );
删除 table : drop table mytable
4、配置 用户角色
CREATE ROLE cass WITH PASSWORD = '111111' AND LOGIN = true;
CREATE ROLE ksadmin WITH PASSWORD = '1234abcd';
GRANT ALL PERMISSIONS ON KEYSPACE mykeyspace TO ksadmin;
GRANT ksadmin TO cass ;
GRANT ALL PERMISSIONS ON KEYSPACE mykeyspace TO ksaccount;
GRANT CREATE ON ALL ROLES TO ksaccount
GRANT AUTHORIZE ON KEYSPACE mykeyspace TO ksaccount ;
安装cassandra后,进入cqlsh直接创建用户时 会报下面错误:
**InvalidRequest: Error from server: code=2200 [Invalid query] message="org.apache.cassandra.auth.CassandraRoleManager doesn't support PASSWORD"**
原因是没有开启password验证,可以使用下面步骤重新设置:
创建新的用户
>>sudo vi /etc/cassandra/conf/cassandra.yaml
>>sudo service cassandra restart
>>cqlsh -u cassandra (输入密码:默认cassandra)
cassandra@cqlsh>> CREATE ROLE cass WITH PASSWORD = '111111' AND LOGIN = true;
cassandra@cqlsh>> exit;
>>cqlsh -u cass (输入密码:111111)
cassandra@cqlsh>>
5、配置sudo cassandra 命令
修改 /etc/sudoers 文件,在secure_path 处添加cassandra 路径。
在保存此文件时,及时使用root用户仍然提示文件不可修改,可以使用下面命令强制保存修改:
:w !sudo tee %
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。