码迷,mamicode.com
首页 > 其他好文 > 详细

thingsboard

时间:2018-10-23 21:08:14      阅读:1093      评论:0      收藏:0      [点我收藏+]

标签:nbsp   des   默认   clu   replicat   and   local   ring   factor   

cassandra安装配置用cqlsh登录以后,默认集群是Test Cluster,而thingsboard中要求是Thingsboard Cluster

1修改cassandra集群名称

①修改系统中的集群名称

启动cassandra,登录cqlsh,

select cluster_name from system.local;

显示当前cluster是 Test Cluster

UPDATE system.local SET cluster_name = ‘Thingsboard Cluster‘ where key=‘local‘;

验证修改结果

select cluster_name from system.local;

显示结果是Thingsboard Cluster,

退出cqlsh

exit;

②修改配置文件中的集群名称

找到配置文件,apache-cassandra-3.11.3/conf/cassandra.yaml(apache-cassandra-3.11.3是我的当前安装目录)

将cluster_name: ‘Test Cluster‘ 修改为cluster_name: ‘Thingsboard Cluster‘

③将memtable刷为commitlog

在①exit之后,运行

nodetool flush system

重新启动cqlsh,验证

describe cluster;

2创建keyspace:thingsboard

CREATE KEYSPACE thingsboard WITH replication = {‘class‘: ‘SimpleStrategy‘, ‘replication_factor‘: ‘1‘};

 验证

describe keyspaces;

thingsboard

标签:nbsp   des   默认   clu   replicat   and   local   ring   factor   

原文地址:https://www.cnblogs.com/xfvipp/p/9838247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!