安裝文檔:
http://code.openark.org/forge/mycheckpoint/documentation/quick-howto#Install
需求:
1.需要安裝python,並且版本大於2.4
shell > phthon看一下有沒有裝,沒有就
yum install python2.需要安裝Mysql-Python模組,RHEL,Centos方法如下,其它參考官方手冊
yum install MySQL-python
安裝:
tar xzfv mycheckpoint-208.tar.gz
cd mycheckpoint-208
sudo python setup.py install
3.建立資料庫:
mysql > CREATE DATABASE mycheckpoint;
mysql > GRANT ALL PRIVILEGES ON mycheckpoint.* TO 'monitoring_user'@'localhost' IDENTIFIED BY 'some_password';
4.編輯設定檔:
vim /etc/mycheckpoint.cnf
[mycheckpoint]
#smtp_host = mail.my-server-company.com
#smtp_from = monitor@my-server-company.com
#smtp_to = dba@my-server-company.com
#monitored_port = 3306
purge_days = 60
#... Any command line option can go here; replace dash ("-") with underscored ("_")
[client]
user=dbmonitor
password=123456
socket=/tmp/mysql.sock
port=3306
host=localhost
5.部署:建立表,等其它操作
mycheckpoint deploy
6.寫入crontab,每五分鐘採集一次資料:
crontab -e寫入如下代碼
*/5 * * * * mycheckpoint
7.開啟http服務(預設連接埠12306),加nohup可以在斷開shell後HTTP仍然運行,也可以寫入到linux啟動指令碼:
nohup mycheckpoint http > /dev/null &參數
–http-port 指定監聽連接埠
OK,開啟http://your_ip_address:12306/ 就能查看你剛才配置的mycheckpoint了,不過資料是整點產生的,所以你可能不得不等待一個小時以後才能看見產生的曲線,另外的這個軟體還支援警示和使用者定義資料記錄,因為時間問題,先不在這裡寫明了。
查看協助:
mycheckpoint --help
我們來看截圖