首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 系统运维 >

ganglia 极度简单安装教程yum版

2012-12-24 
ganglia 极其简单安装教程yum版首先要说明的是,这里需要使用yum库安装,请先配置好所有节点的yum库,这也为

ganglia 极其简单安装教程yum版

首先要说明的是,这里需要使用yum库安装,请先配置好所有节点的yum库,这也为你以后安装任何软件都节省时间的。

安装

    server端

yum install rrdtool ganglia-gmetad ganglia-gmond ganglia-web httpd phpclient端yum install ganglia-gmond

配置

 Server端① 
> vi /etc/ganglia/gmond.conf

cluster {
name = "heipark" // 这个名称很重要
....
}

udp_send_channel {
host = 192.168.1.5 // 使用host为单播,mcast_join为多播
port = 8649
ttl = 1
}

udp_recv_channel { // 如果使用单机广播,要删除“mcast_join”和“bind”
port = 8649
}


> vi /etc/ganglia/gmetad.conf 
# 配置一个数据源,名称“heipark”要和/etc/ganglia/gmond.conf中一致,后面的ip为server的ip
data_source "heipark" 192.168.1.5:8649


# 开机运行采集进程
chkconfig --levels 235 gmond on
# 开机运行数据存储进程
chkconfig --levels 235 gmetad on
# 开机运行apache服务
chkconfig --levels 235 httpd onclient端①
# 在server端执行scp,将配置文件分发到client端
scp /etc/ganglia/gmond.conf root@{ip}:/etc/ganglia/gmond.conf
② 
# 设置开机运行数据采集进程
chkconfig --levels 235 gmond on

运行Server端 service gmond start
service gmetad start
service httpd startClient端service gmond start

测试

# 命令行打印当前活动client
gstat -a

# web显示当前client状态
http://{your_ip}/ganglia

 

Apache密码验证 

通过web方式访问ganglia不需要密码,所以我们通过apache设置密码达到安全目的。



htpasswd -c /etc/httpd/conf.d/passwords {your_name}


cd /usr/share/ganglia

vi .htaccess // 创建apache目录密码文件,并写入下面内容

AuthType Basic
AuthName "Restricted Files"
AuthUserFile /etc/httpd/conf.d/passwords
Require user {your_name} 


vi /etc/httpd/conf/httpd.conf 
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

修改为:

<Directory />
    Options FollowSymLinks
    AllowOverride AuthConfig
</Directory>


 

 

参考:

★老外神作版本:

http://linuxcluster.wordpress.com/2010/01/01/installing-and-configuring-ganglia-on-centos-5-4/

阿泰菜园版本:

http://arch.huatai.me/?p=280&cpage=1#comment-586

手工配置版本:

http://www.blogjava.net/xylz/archive/2011/07/21/354744.html

热点排行