-
启用 EPEL repository
这里使用 阿里云的镜像服务器
mv /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel.repo.backup
mv /etc/yum.repos.d/epel-testing.repo /etc/yum.repos.d/epel-testing.repo.backup
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
rpm -Uvh http://mirrors.aliyun.com/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum --enablerepo=epel
-
安装并创建 virtualenv
-
安装 python packages
yum install python-virtualenv.noarch python-virtualenvwrapper.noarch
-
修改 ~/.bashrc,在最后加上
export WORKON_HOME=/opt/virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python2.6
source /usr/bin/virtualenvwrapper.sh
-
使配置生效,在命令行执行
source ~/.bashrc
-
然后,创建新的 virtualenv,在命令行执行
mkvirtualenv graphite
-
-
切换到 virtualenv graphite,在命令行执行
[root@pc4 ~]# workon graphite
(graphite)[root@pc4 ~]#
-
使用 pip 安装 graphite 和其他 python packages
(graphite)[root@pc4 ~]# pip install graphite-web==0.9.12 carbon==0.9.12 whisper==0.9.12 twisted==11 django==1.3.7 django-tagging==0.3.1 gunicorn==18 simplejson==3.5 python-memcached
-
安装 cairo 和 pycairo 矢量图工具5
(graphite)[root@pc4 ~]# yum install cairo-devel pycairo-devel
由于使用 pip 安装 pycairo 会出错,导致无法在 virtualenv 中安装,所以将系统中装好的 cairo 软连接到 virtualenv graphite 中。
(graphite)[root@pc4 ~]# ln -s /usr/lib64/python2.6/site-packages/cairo /opt/virtualenvs/graphite/lib64/python2.6/site-packages/cairo
-
创建配置文件
cp /opt/graphite/webapp/graphite/local_settings.py.example /opt/graphite/webapp/graphite/local_settings.py
cp /opt/graphite/conf/carbon.conf.example /opt/graphite/conf/carbon.conf
cp /opt/graphite/conf/storage-schemas.conf.example /opt/graphite/conf/storage-schemas.conf
cp /opt/graphite/conf/storage-aggregation.conf.example /opt/graphite/conf/storage-aggregation.conf
-
配置graphite的数据压缩
vi /opt/graphite/conf/storage-schemas.conf
注释掉
[default_1min_for_1day]
[diamond] pattern = ^servers.* #这里的最小数据时长要和 Diamond 中 /etc/diamond/diamond.conf 配置的 interval = 60 一致 retentions = 1m:7d,15m:30d,1h:2y [primary] pattern = .* retentions = 10s:24h, 1m:7d, 15m:30d, 1h:2y #[default_1min_for_1day] #pattern = .* #retentions = 60s:1d #retentions = 10s:6h,1min:7d,10min:5y
-
修改 /opt/graphite/webapp/graphite/local_settings.py
vi /opt/graphite/webapp/graphite/local_settings.py
...... SECRET_KEY = '任意值' ...... TIME_ZONE = 'Asia/Shanghai' ...... # Logging LOG_RENDERING_PERFORMANCE = True LOG_CACHE_PERFORMANCE = True LOG_METRIC_ACCESS = True DEBUG=True ......
-
-
启动 carbon
(graphite)[root@pc4 ~]# /opt/graphite/bin/carbon-cache.py start
-
初始化 Graphite Django 数据库
(graphite)[root@pc4 ~]# cd /opt/graphite/webapp/graphite && python manage.py syncdb
-
yum install httpd mod_wsgi
vi /etc/httpd/conf.d/graphite-vhost.conf
# This needs to be in your server's config somewhere, probably # the main httpd.conf # NameVirtualHost *:80 # This line also needs to be in your server's config. # LoadModule wsgi_module modules/mod_wsgi.so # You need to manually edit this file to fit your needs. # This configuration assumes the default installation prefix # of /opt/graphite/, if you installed graphite somewhere else # you will need to change all the occurances of /opt/graphite/ # in this file to your chosen install location. <IfModule !wsgi_module.c> LoadModule wsgi_module modules/mod_wsgi.so </IfModule> # XXX You need to set this up! # Read http://code.google.com/p/modwsgi/wiki/ConfigurationDirectives#WSGISocketPrefix WSGISocketPrefix /var/run/httpd/graphite WSGIPythonHome /opt/virtualenvs/graphite <VirtualHost *:80> ServerName graphite.tianjin DocumentRoot "/opt/graphite/webapp" ErrorLog /opt/graphite/storage/log/webapp/error.log CustomLog /opt/graphite/storage/log/webapp/access.log common # I've found that an equal number of processes & threads tends # to show the best performance for Graphite (ymmv). WSGIDaemonProcess graphite processes=5 threads=5 display-name='%{GROUP}' inactivity-timeout=120 WSGIProcessGroup graphite WSGIApplicationGroup %{GLOBAL} WSGIImportScript /opt/graphite/conf/graphite.wsgi process-group=graphite application-group=%{GLOBAL} # XXX You will need to create this file! There is a graphite.wsgi.example # file in this directory that you can safely use, just copy it to graphite.wgsi WSGIScriptAlias / /opt/graphite/conf/graphite.wsgi Alias /content/ /opt/graphite/webapp/content/ <Location "/content/"> SetHandler None </Location> # XXX In order for the django admin site media to work you # must change @DJANGO_ROOT@ to be the path to your django # installation, which is probably something like: # /usr/lib/python2.6/site-packages/django Alias /media/ "@DJANGO_ROOT@/contrib/admin/media/" <Location "/media/"> SetHandler None </Location> Alias /grafana /opt/graphite/webapp/grafana <Location "/grafana"> SetHandler None </Location> # The graphite.wsgi file has to be accessible by apache. It won't # be visible to clients because of the DocumentRoot though. <Directory /opt/graphite/conf/> # Order deny,allow # Allow from all # until apache 2.3 Options All AllowOverride All # Require all granted # since apache 2.4 </Directory> <Directory /opt/graphite/webapp> Order deny,allow Allow from all # until apache 2.3 Options All AllowOverride All # Require all granted # since apache 2.4 </Directory> </VirtualHost>
chown -R apache:apache /opt/graphite/storage/
service httpd start
-
安装 Elasticsearch9
- 添加 yum repositories
参考9
-
安装
yum install elasticsearch
-
下载 Grafana10
wget http://grafanarel.s3.amazonaws.com/grafana-1.5.4.tar.gz
tar zxf grafana-1.5.4.tar.gz
mv grafana-1.5.4 /opt/graphite/webapp/grafana
关于基于VirtualEnv安装的 Carbon 如何自启动,请参考这个:https://gist.github.com/acdha/1506392