Cacti 監控 MySQL筆記 |
發布時間: 2012/9/24 16:57:23 |
Cacti 監控 MySQL 1. 安裝監控插件 cd /opt
使用 http 訪問 cacti主機 導入 /opt/mysql-cacti-templates-1.1.2/cacti_host_template_x_db_server_ht_0.8.6i.xml 控制臺 - 導入導出 - 模板導入 - 瀏覽 選中 cacti_host_template_x_db_server_ht_0.8.6i.xml 2. 配置cacti的mysql插件 修改 ss_get_mysql_stats.php vi /var/www/html/scripts/ss_get_mysql_stats.php $mysql_user = 'cacti'; 這個賬戶和密碼是 被監控端主機 給 Cacti主機 授權的 賬戶和密碼 mkdir -p /tmp/cacti/cache 設置 cacti 緩存目錄在 /tmp/cacti/cache/ 并給予權限 3. 配置被監控端的mysql 給 cacti 主機授權 mysql -uroot -p grant process,super on *.* to '賬戶'@'Cacti主機IP地址' identified by '密碼'; 4. 在Cacti主機上 監控Mysql 4.1 為主機添加mysql模塊 4.2 為mysql模塊創建圖形 4.3 插件mysql性能數據 完畢 mysqld_safe --user=mysql & mysql -uroot -p mysql -uroot -proot grant select,insert,update,delete on cacti.* to cacti@* identified by "cacti"; grant process,super on *.* to 'cacti'@'%' identified by 'cacti';
grant process,super on *.* to 'cacti'@'192.168.0.195' identified by 'cacti'; = = = = = mysql -ucacti -pcacti -h 192.168.0.97
本文出自:億恩科技【www.vbseamall.com】 |