码迷,mamicode.com
首页 > 数据库 > 详细

kairosdb+cassandra集群化安装

时间:2017-08-24 21:26:40      阅读:458      评论:0      收藏:0      [点我收藏+]

标签:sage   tar   directory   hang   example   change   start.s   libc   red   

kairosdb

(1)到/conf目录下,找到kairosdb.properties,修改datastore为cassandra

技术分享

(2)设置cassandra的连接方式

技术分享

(3) 设置用户名密码

技术分享

 

4. 启动:到/bin目录下,直接跑./kairosdb.sh start,最后会看到 KairosDB service started   这样一句话,就OK了
172.16.101.25:8080 kairosdb客户端

cassandra

修改cassandra配置文件
conf/cassandra.yaml
技术分享
技术分享
技术分享
技术分享
技术分享
启动
./bin/cassandra -R 用root用户启动
start.sh    nohup sh cassandra -R  > default.log 
报错如下:
技术分享
原因:GLIBC版本太低
升级GLIBC版本
按照http://stuart.blog.51cto.com/728677/1840205在172.16.110.25上按照改步骤升级GLIBC,可以,具体步骤如下:

一、安装glibc-2.14

 

1
2
3
4
5
6
7
8
9
10
[root@jrgc130 ~]# mv glibc-2.14.tar.gz /opt/software
[root@jrgc130 ~]# cd /opt/software
[root@jrgc130 software]# tar xf glibc-2.14.tar.gz
[root@jrgc130 software]# cd glibc-2.14
[root@jrgc130 glibc-2.14]# mkdir build
[root@jrgc130 glibc-2.14]# cd build
[root@jrgc130 build]# ../configure --prefix=/usr/local/glibc-2.14
[root@jrgc130 build]# make -j4
[root@jrgc130 build]# make install

 

二、拷贝链接库

 

1
2
[root@jrgc130 build]# cd /usr/local/glibc-2.14/lib
[root@jrgc130 lib]# cp libc-2.14.so /lib64/

 

三、创建链接

 

1
2
[root@jrgc130 lib]# cd /lib64
[root@jrgc130 lib64]# rm -rf libc.so.6

 

此后会报如下错误:

 

1
ls: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

 

解决方法:

 

1
[root@example lib64]# /sbin/sln libc-2.14.so /lib64/libc.so.6

 

四、查看支持的版本

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[root@jrgc130 lib64]# strings /lib64/libc.so.6 |grep GLIBC
GLIBC_2.2.5
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_PRIVATE

 

通过ssh连接会报如下错误:

 

1
2
3
4
5
-bash: warning: setlocale: LC_CTYPE: cannot change locale (en_US.UTF-8): No such file or directory
-bash: warning: setlocale: LC_COLLATE: cannot change locale (en_US.UTF-8): No such file or directory
-bash: warning: setlocale: LC_MESSAGES: cannot change locale (en_US.UTF-8): No such file or directory
-bash: warning: setlocale: LC_NUMERIC: cannot change locale (en_US.UTF-8): No such file or directory
-bash: warning: setlocale: LC_TIME: cannot change locale (en_US.UTF-8): No such file or directory

 

解决方法:

 

1
2
3
4
5
[root@example ~]# vim /etc/environment 
LANG=en_US.utf-8
LC_ALL=
[root@example ~]# source /etc/environment 
[root@example ~]# localedef -v -c -i en_US -f UTF-8 en_US.UTF-8

集群化部署

cassandra中

vi cassandra.yaml 

技术分享

技术分享

vi cassandra-topology.properties 

技术分享

 vi cassandra-rackdc.properties 

技术分享

kairosdb中kairosdb.datastore.cassandra.host_list改成多ip形式

 vi kairosdb.properties 

技术分享


Cassandra连接

 ./cqlsh -u cassandra -p cassandra 172.16.103.127  

kairosdb+cassandra集群化安装

标签:sage   tar   directory   hang   example   change   start.s   libc   red   

原文地址:http://www.cnblogs.com/chenjiazhu/p/7424975.html

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