您好,登錄后才能下訂單哦!
這篇文章主要介紹“ganglia的安裝與配置步驟”,在日常操作中,相信很多人在ganglia的安裝與配置步驟問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ganglia的安裝與配置步驟”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
給ceph安裝了一個ganglia監控,過程如下。
ceph是在centos6.5上安裝的3臺物理機:mon0, osd1, osd2,所以在這三臺機器上都需要安裝gmond;在osd2上安裝gmetad。
先安裝epel源:
rpm -ivh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
安裝依賴包:
yum install apr-devel expat-devel
在mon0和osd1安裝gmond:
yum install ganglia ganglia-gmond httpd php apr apr-util
在osd2上安裝gmetad:
yum install ganglia ganglia-gmetad ganglia-gmond ganglia-web httpd php apr apr-util
配置web:
mkdir -p /var/www/html/ganglia/ //創建網站主目錄下ganglia文件夾,用來訪問ganglia cp -a /usr/share/ganglia/* /var/www/html/ganglia/ //拷貝ganglia網站代碼到該目錄 chkconfig gmond on chkconfig gmetad on chkconfig httpd on
默認 /var/lib/ganglia/rrds的屬主就是ganglia,不必像網上所說的改稱nobody。
在/var/www/html/ganglia/下的conf.php有可能無效,需要手動拷貝一份:
cp /usr/share/ganglia/conf.php /var/www/html/ganglia
在centos6.5上還有可能遇到web訪問forbidden的情況,需要修改/etc/httpd/conf.d/ganglia.conf:
Alias /ganglia /usr/share/ganglia <Location /ganglia> Order deny,allow Deny from all Allow from all //修改為all Allow from ::1 # Allow from .example.com </Location>
配置/etc/ganglia/gmond.conf:
cluster { name = "ceph" //cluster name owner = "unspecified" latlong = "unspecified" url = "unspecified" } /* The host section describes attributes of the host, like the location */ host { location = "unspecified" } /* Feel free to specify as many udp_send_channels as you like. Gmond used to only support having a single channel */ udp_send_channel { host = 192.168.108.4 //gmetad ip port = 8649 } /* You can specify as many udp_recv_channels as you like as well. */ udp_recv_channel { port = 8649 bind = 192.168.108.3 //本機ip family = inet4 }
配置 /etc/ganglia/gmetad.conf,這里只需修改一行:
data_source "ceph" 192.168.108.4:8649 //gmetad ip
啟動各種服務,然后在web輸入gmetad_ip/ganglia就可以看到監控界面了。
以上是單播的配置,還有多播配置,可以自己查詢。
到此,關于“ganglia的安裝與配置步驟”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。