溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Ganglia安裝篇

發(fā)布時間:2020-06-25 18:08:10 來源:網(wǎng)絡 閱讀:2564 作者:holy2009 欄目:建站服務器

 

 

一、ganglia基本介紹

ganglia是分布式的監(jiān)控系統(tǒng),有兩個Daemon,分別是:客戶端GangliaMonitoring Daemon(gmond)和服務端GangliaMetaDaemon (gmetad),還有GangliaPHPWeb 

Frontend(基于web的動態(tài)訪問方式)組成是一個Linux下圖形化監(jiān)控系統(tǒng)運行性能的軟件,界面美觀、豐富,功能強大而ganglia又依賴于一個web服務器用來顯示集群狀態(tài),用rrdtool來存儲數(shù)據(jù)和生成曲線圖,需要xml解析因此需要expat,配置文件解析需要libconfuse。

Ganglia是一個監(jiān)控服務器,集群的開源軟件,能夠用曲線圖表現(xiàn)最近一個小時,最近一天,最近一周,最近一月,最近一年的服務器或者集群的cpu負載,內存,網(wǎng)絡,硬盤等指標。

Ganglia的強大在于:ganglia服務端能夠通過一臺客戶端收集到同一個網(wǎng)段的所有客戶端的數(shù)據(jù),ganglia集群服務端能夠通過一臺服務端收集到它下屬的所有客戶端數(shù)據(jù)。這個體系設計表示一臺服務器能夠通過不同的分層能夠管理上萬臺機器。這個功能是其他mrtg,nagios,cacti所不能比擬。

Ganglia安裝篇


 

二、環(huán)境的準備

服務端:系統(tǒng)Centos6.5 64位

        運行環(huán)境:Apache Web Server PHP 5.2及更新版本 PHP JSON 擴展的安裝和啟用

       gmetad 服務,gmond服務(為了監(jiān)控服務端服務安裝的客戶端服務)

 

客戶端:系統(tǒng)Centos6.5 64位

         只安裝gmond服務

1.安裝php支持

 yum install php-common php-cliphp-gb php

 

2. 安裝ganglia及其相關組件

server端:yum install httpd rrdtool rrdtool-devel  ganglia-gmetad ganglia-gmondganglia-gmond-python httpd apr-devel zlib-devel libconfuse-devel expat-develpcre-devel 

下載最新版本的gweb
https://sourceforge.net/projects/ganglia/files/gweb/
本示例當前最新版本為3.7.2
命令: wget http://ncu.dl.sourceforge.net/project/ganglia/ganglia-web/3.7.2/ganglia-web-3.7.2.tar.gz
下載后 解壓: tar -zxvf ganglia-web-3.7.2.tar.gz
需要修改 Makfile文件:
cd ganglia-web-3.7.2
vim Makefile
    修改默認配置:
    GDESTDIR = /var/www/html/ganglia2
    APACHE_USER = apache

 

client端:yum install ganglia-gmond

 

 

3、檢查狀態(tài)并啟動相關的服務

檢查httpd是否啟動:service httpd status

啟動httpd:service httpd start

 

 檢查gmetad是否啟動: service gmetad status

啟動gmetad:service gmetad start

 

檢查本地gmond是否啟動:service gmond status

啟動gmond:service gmond start

 

4、關閉selinux

如果跳過這一步,打開http://<server ip address>/ganglia2會出現(xiàn)以下異常:
   There was an error collecting ganglia data (127.0.0.1:8652): fsockopen error: Permission denied
SELinux是什么
http://wiki.centos.org/zh/HowTos/SELinux
查看SELinux狀態(tài):
sestatus
 
關閉SELinux:
命令: setenforce 0
setenforce 這個指令可以即時切換 Enforcing 及 Permissive 這兩個模式,但這些改動在系統(tǒng)重新開機時不會被保留。
要想在下次開機后生效,需要在 /etc/selinux/config 內修改 SELINUX= 這一行為 enforcing。

 

5、相關配置

客戶端上的配置:

修改/etc/ganglia/gmond.conf

cluster {

 name = "cluster01"

 owner = "unspecified"

 latlong = "unspecified"

 url = "unspecified"

}

udp_send_channel {

 #bind_hostname = yes # Highly recommended, soon to be default.

                       # This option tellsgmond to use a source address

                       # that resolves to themachine's hostname.  Without

                       # this, the metrics mayappear to come from any

                      # interface andthe DNS names associated with

                       # those IPs will be usedto create the RRDs.

 mcast_join = 239.2.11.71

 port = 8649

 ttl = 1

}

 

/* You can specify as manyudp_recv_channels as you like as well. */

udp_recv_channel {

 mcast_join = 239.2.11.71

 port = 8649

 bind = 239.2.11.71

 retry_bind = true

  #Size of the UDP buffer. If you are handling lots of metrics you really

  #should bump it up to e.g. 10MB or even higher.

  #buffer = 10485760

}

服務端上的配置:

 修改文件/etc/ganglia/gmetad.conf

 data_source "cluster01"localhost   // cluster01是gmond.conf中cluster里name的名字  localhost則需要是服務器端的ip

 

gridname "MyGrid"

 

 

6、訪問服務

http://<server ip address>/ganglia2/目錄“/ganglia2”可以在 ganglia-web的Makefile文件中GDESTDIR被修改,修改后需要重新編譯

Ganglia安裝篇

 

 

 

參考:http://www.cnblogs.com/chaoren399/p/6228936.html

參考:http://www.centoscn.com/p_w_picpath-text/install/2014/0523/3002.html

參考:http://blog.csdn.net/avilifans/article/details/22685425


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI