注意保存。
安装常用插件
Monitor,Settings,thold
# tar zxvf monitor-latest.tgz
# tar zxvf settings-latest.tgz
# tar zxvf thold-latest.tgz
# mv monitor-0.9 /var/www/html/cacti/plugins/monitor
# mv settings-0.6 /var/www/html/cacti/plugins/settings
# mv thold-0.41 /var/www/html/cacti/plugins/thold
回到
web
管理界面,找到
console―Configuration―Plugin Management
,你将看到
登陆安装启用对应的插件即可。
注意事项:
1.
官方文档说要修改
/var/www/html/cacti/include/global.php
里面的内容。我试验后发现,修改后反而不能找到插件。不修改即可找到插件。
2.
在安装
thold
时,可能会出现
You are missing a dependency for thold, please install the 'Settings' plugin.
这样的警告。只需要先安装
settings
插件就
OK
。
五、Cacti MSN,mail,
飞信报警设置
1.E-mail
报警设置。
2.MSN
报警设置。
3.
飞信报警设置。
更多见
http://www.pcwind.net/cactimsn.html
1
、
E-mail
报警设置
回到
web
管理界面,找到
console―Configuration―Settings―Alerting/Thold
并保存。
找到
console―Configuration―Settings―Mail/DNS
并保存。
注意:此邮箱为为测试邮箱,点击右边
,此邮箱将受到
test mail
。
并且显示如下对话框。
Root@localhost
为任意地址,服务器不予与验证。
如果
SMTP
换为
Sendmail
,将可能出现错误信息。所有,最好选择
SMTP
。记得保存。
2.MSN
报警设置
1
)修改
cacti
插件
thold
目录下的
thold_functions.php
vim /var/www/html/cacti/plugins/thold/thold_functions.php
搜
thold_mail
找到文件中的第一个这一句
:
if (trim($alert_emails) != "")
thold_mail($alert_emails, '', $subject, $msg, $file_array);
然后下面添加
exec("echo $subject >>/var/www/html/cacti/plugins/thold/alert.log");
exec("sh /var/www/html/cacti/plugins/thold/sendmessage.sh");
保存退出
3.
然后编写个
sendmessage.sh
脚本,在
/var/www/html/cacti/plugins/thold/
这个目录下
脚本内容
======================================================================
#!/bin/sh
echo `echo -n "date:"&&date +%Y-%m-%d-%H:%M` >> /var/www/html/sendMsg/msn.txt.1
cat /var/www/html/cacti/plugins/thold/alert.log >>/var/www/html/sendMsg/msn.txt.1
now=`date +%Y-%m-%d-%H:%M`
SA=(test)
sendMsg()
{
num=0
while [ $num -lt 1 ];
do
wget ―post-data "[email protected]&password=123456&recipient=${1}&message=${2}" http://127.0.0.1/sendMsg/index.php -O /var/www/html/sendMsg/index.php.1 >/dev/null 2>&1
if [ -f /var/www/html/sendMsg/index.php.1 ]; then
if cat /var/www/html/sendMsg/index.php.1 |grep -i successfully >/dev/null 2>&1;then
num=1
elif cat /var/www/html/sendMsg/index.php.1 |grep -i "The user appears to be offline" >/dev/null 2>&1;then
num=1
echo "The user is offline."
exit 0
elif cat /var/www/html/sendMsg/index.php.1 |grep -i "Something went wrong trying to connect to the server" >/dev/null 2>&1;then
num=1
echo "MSN server is online."
exit 0
else
num=0
fi
rm -f /var/www/html/sendMsg/index.php.1
else
num=0
fi
done
}
mv /var/www/html/sendMsg/msn.txt /var/www/html/sendMsg/bak/msn$now.txt -f 1>/dev/null 2>&1
mv /var/www/html/sendMsg/msn.txt.1 /var/www/html/sendMsg/msn.txt -f 1>/dev/null 2>&1
rm /var/www/html/cacti/plugins/thold/alert.log -f 1>/dev/null 2>&1
for i in 0
do
if cat /var/www/html/sendMsg/msn.txt ; then
messages=`cat /var/www/html/sendMsg/msn.txt `
sendMsg "${msnaddr[$i]}" "$messages"
else
continue
fi
done
===========================================================
然后保存退出。
(
发送和接受者必须互为好友
)
4.
手动运行
sendmessage.sh
这个脚本,如果没有问题,应该可以收到消息。
4.
飞信报警功能实现
1.
下载最新版飞信机器人。
http://bbs.it-adv.net/viewthread.php?tid=1081&extra=page%3D1
根据情况下载,因为会经常更新。
下载两个一个是
fetion
程序,一个是
Linux
下的库包
linuxso-20101113.tar.gz
2.
飞信机器人放置位置
cd /var/www/html
mkdir sendsms
cp -a linuxso_20101113 /var/www/html/sendsms/linuxso
cp fetion /var/www/html/sendsms/linuxso/fetion
chmod 777 -R /var/www/html/sendsms/linuxso
搜
thold_mail
找到文件中的第一个这一句
:
if (trim($alert_emails) != "")
thold_mail($alert_emails, '', $subject, $msg, $file_array);
然后下面添加
exec("echo $subject >>/var/www/html/cacti/plugins/thold/alert.log");
exec("/var/www/html/cacti/plugins/thold/sendsms.sh");
编写
sendsms.sh
脚本,内容如下:
===========================================================================
#!/bin/sh
#send sms by fetion
if [ ! -e "/var/www/html/cacti/plugins/thold/alert.log" ];then
echo "Usage:alert.log does not exist"
exit
fi
if [ -n "`cat /var/www/html/cacti/plugins/thold/alert.log`" ]; then
admin="150382XXXX"
echo "sms $admin "`cat /var/www/html/cacti/plugins/thold/alert.log` >>/var/www/html/cacti/plugins/thold/sms.txt
echo "exit" >> /var/www/html/cacti/plugins/thold/sms.txt
else
echo "Usage:no alert"
exit
fi
if [ -n "`cat /var/www/html/cacti/plugins/thold/sms.txt`" ] ; then
LD_LIBRARY_PATH=/var/www/html/sendsms/linuxso /var/www/html/sendsms/linuxso/fetion --mobile=158038XXX90 --pwd=123xxx --to=$admin --file-utf8=/var/www/html/cacti/plugins/thold/sms.txt
rm -f /var/www/html/cacti/plugins/thold/sms.txt 1>/dev/null 2>&1
rm -f /var/www/html/cacti/plugins/thold/alert.log 1>/dev/null 2>&1
else
echo "Usgae:no message to send"
exit
fi
=====================================================================
保存,退出。测试一下。
可以新建
alert.log
以及
sms.txt,
其中在
alert.log
中添加一个内容。
然后运行脚本
./sendsms.sh
会返回以下结果,表示成功。
同时对方收到短信。
[root@station1 thold]# ./sendsms.sh
图形验证码已经生成,文件名为
:15803826990.jpg
请识别后输入图形验证码
:
Nm8p #
一般第一次会让你输入验证码。这个图片,在你的
fetion
的目录下。
您输入的识别码是
:nm8p
SIP-C/4.0 280 Send SMS OK
I: 3
Q: 1 M
L: 115
D: Mon, 22 Nov 2010 15:28:45 GMT
XI: 516723D0200B5C60F8747A8E9B4CFF55
[root@station1 thold]#
5.
本次实验,难点是飞信这个地方,网上没有最新的解决方案。这里经过好久测试,最终测试出可行的办法。如果有问题,欢迎大家反馈。
六、常见故障排除
安装完毕在浏览器上无法看到数据的
png
图片。看
apache
的
log
如果出现:
========================
[Thu Feb 09 15:12:24 2006] [error] [client 127.0.0.1] File does not exist: /var/www/html/favicon.ico
ERROR: opening '/var/www/html/cacti/rra/localhost_mem_buffers_3.rrd': Permission denied
PS:
解决办法:关闭
selinux
,即可解决问题。
PS
:以上无法获取数据图大多和poller.php
,cmd.php
权限有关。
当cacti
有图没有数据时,而且状态为nan
的错误
PS
:这个很可能是snmp
的问题,
执行以下命令,没有得到如图的结果。就说明snmp
不支持64
位MIB
库。重新编译安装snmp
# snmpwalk -c public -v 2c 127.0.0.1 IF-MIB::ifHCInOctets
IF-MIB::ifHCInOctets.1 = Counter64: 7437357
IF-MIB::ifHCInOctets.2 = Counter64: 353773IF-MIB::ifHCInOctets.3 = Counter64: 0
PS
:被监控主机无法获得snmp
信息,还有可能是对方主机snmp
版本和当前主机的snmp
版本不一致导致的。
PS
:rrdtools
版本要一致,特别是在升级cacti
时候。版本不一致,可能rra
数据格式不同。就无法处理。
排错思路
1、
查看
log
下的日志文件。一般那里会有提示
2、测试
SNMP
是不是工作正常
snmpwalk -v 2c -c public hostIP if
正常的话会出现一些数据。不正常会出现一些错误,也会有对应的错误提示。
3、
自动运行
poller.php
没有。有没有加入
cacti
的的用户。。有没有给
cacti
用户写入
rra/ log/
的权限。。
4、
crontab
�C
u cactiuser
�C
e
为
cactiuser
加上自动运行
poller.php
的任务:
*/5 * * * *
root /usr/local/bin/php /usr/local/share/cacti/poller.php /dev/null 2>&1
5
分钟刷新一次数据。你也可以根据需要还设置。
5、
把
cacti
目录里的
cmd.php
和
poller.php
文件加下运行的权限。
本文摘自
http://www.pcwind.net/cactimsn.html
,严重感谢“疯狂的小蜗牛”同学辛勤劳动成果。