242_sakuravps2_collectdインストール

さて、
[117][119][120]Collectd_SAKURAVPSにcollectdをインストール
を参考
collecctdインストール
$ yum list epel-release
$ yum install epel-release
$ yum install collectd
$ yum -y install collectd-rrdtool
$ service collectd restart
$ yum -y install httpd
$ yum -y install collectd-web
/etc/httpd/conf.d/の配下collectd.confで
デフォルトで127.0.0.1からのみのアクセスが許可となっています。
なので、collectd.confにて「Allow froma ll」としすべてのアクセス許可を追加します。
$ service httpd start
あとはブラウザで以下のアドレスへアクセスします。
https://153.126.154.106/collectd/bin/index.cgi
はい、ダメ、、で[119]を参考
# sudo yum install epel-release
# sudo yum –enablerepo=epel install collectd
はい、でもだめ、で[120]を参考
http://www.tecmint.com/install-collectd-and-collectd-web-to-monitor-server-resources-in-linux/
# yum install collectd
# service collectd restart
# yum install git
# yum install rrdtool rrdtool-devel rrdtool-perl perl-HTML-Parser perl-JSON
# cd /usr/local/
# git clone https://github.com/httpdss/collectd-web.git
# cd collectd-web/
# ls
# chmod +x cgi-bin/graphdefs.cgi
# cd /usr/local/collectd-web/
# vi runserver.py
In order to access Collectd-web interface from a remote browser, you need to edit the runserver.py script and change the 127.0.1.1 IP Address to 0.0.0.0, in order to bind on all network interfaces IP Addresses.
# ./runserver.py &
# python runserver.py &
# kill -9 20598 (←不要なプロセスを削除)
http://153.126.154.106:8888
うーーーーん、まだダメ!!
webアクセスできず!!!
で。

を参考に
設定ファイルである/etc/collectd.confのHostname設定を有効化します。
# vi /etc/collectd.conf
Hostname “153.126.154.106”を追加
# /etc/init.d/collectd restart
# /etc/init.d/httpd restart
http://153.126.154.106/collectd/bin/index.cgi
にアクセス!・・・・
・・・うーん。まあ、とりあえず何かでたなあ。。。
ついでに、MySQLのplug-inを追加してみるか。。。
# yum install collectd-mysql
collectdの設定ファイル
# vi /etc/collectd.conf
LoadPlugin mysql (行頭の#をとる)
<Plugin mysql>
       #—データベースコネクション名
       <Database mysql>
               #—ホスト
               Host “ik1-313-16602.vs.sakura.ne.jp”
               #—ユーザ名
               User “root”
               #—パスワード
               Password “A************0”
       </Database>
を追加
http://153.126.154.106/collectd/bin/index.cgi
http://ik1-313-16602.vs.sakura.ne.jp/collectd/bin/index.cgi
以上(まだまだ勉強足らんな・・)