Graphite 系统安装

安装以来软件

  • 安装mysql

yum install mysql-server mysql-devel mysql

默认yum安装版本 5.1.73

  • 数据库字符集设置

mysql配置文件/etc/my.cnf中加入default-character-set=utf8

  • 启动mysql服务:

service mysqld start或者/etc/init.d/mysqld start

  • 添加开机启动:

chkconfig mysqld on

检查是否设置成功

chkconfig –list |grep mysqld

默认情况,mysql命令就可以进入mysql数据库

 2.2 首先为用户创建一个数据库(testDB):

  mysql>create database testDB;

  2.3 授权test用户拥有testDB数据库的所有权限(某个数据库的所有权限):

   mysql>grant all privileges on testDB.* to test@localhost identified by ‘1234’;

  mysql>flush privileges;//刷新系统权限表

  格式:grant 权限 on 数据库.* to 用户名@登录主机 identified by “密码”; 

  2.4 如果想指定部分权限给一用户,可以这样来写:

  mysql>grant select,update on testDB.* to test@localhost identified by ‘1234’;

  mysql>flush privileges; //刷新系统权限表

  2.5 授权test用户拥有所有数据库的某些权限:  

  mysql>grant select,delete,update,create,drop on . to test@”%” identified by “1234”;

 //test用户对所有数据库都有select,delete,update,create,drop 权限。

  //@”%” 表示对所有非本地主机授权,不包括localhost。(localhost地址设为127.0.0.1,如果设为真实的本地地址,不知道是否可以,没有验证。)

 //对localhost授权:加上一句grant all privileges on testDB.* to test@localhost identified by ‘1234’;即可。

====================================================================================================

http://heylinux.com/archives/3858.html

安装配置Graphite相关软件(MySQL部分可以分开配置,使用独立的服务器)

yum install -y graphite-web graphite-web-selinux MySQL-python

vi /etc/graphite-web/local_settings.py

DATABASES = {
‘default’: {
‘NAME’: ‘graphite’,
‘ENGINE’: ‘django.db.backends.mysql’,
‘USER’: ‘graphite’,
‘PASSWORD’: ‘xxxx’,
‘HOST’: ‘xx’,
‘PORT’: ‘3306’
}
}

执行数据库初始化
/usr/lib/python2.6/site-packages/graphite/manage.py syncdb

Would you like to create one now? (yes/no): yes
Username (leave blank to use ‘root’): root
E-mail address: guosuiyu@gmail.com
Password: graphite
Password (again): graphite

启动Apache服务,作为Graphite的Web服务器
service httpd start

安装底层的绘图与数据采集软件

yum install -y python-carbon python-whisper

启动数据采集进程

service carbon-cache start

更新配置,保留所有metrics目录下数据90天(默认仅保留1天,也就是说看不到1天以前的数据绘图)

vi /etc/carbon/storage-schemas.conf

[carbon]
priority = 101
pattern = ^carbon.
retentions = 60:90d

[default_1min_for_90days]
priority = 100
pattern = .*
retentions = 60:90d

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值