Centos6 搭建smokeping
安装前准备
1)关闭iptables以及selinux
2)时间同步
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ntpdate ntp1.aliyun.com
下载地址:
fping:
wget http://fping.org/dist/fping-3.10.tar.gz
echoping:
wget https://fossies.org/linux/misc/old/echoping-6.0.2.tar.gz
smokeping:
1、安装依赖包:
yum install -y vim wget perl perl-Net-Telnet perl-Net-DNS perl-LDAP perl-libwww-perl perl-IO-Socket-SSL perl-Socket6 perl-Time-HiRes perl-ExtUtils-MakeMaker rrdtool rrdtool-perl curl httpd httpd-devel gcc make wget libxml2-devel libpng-devel glib pango pango-devel freetype freetype-devel fontconfig cairo cairo-devel libart_lgpl libart_lgpl-devel popt popt-devel libidn libidn-devel screen
2、解压、编译安装fping
tar xf fping-3.10.tar.gz
cd fping-3.10
./configure
make && make install
cd ~
3、解压、编译安装echoping
tar xf echoping-6.0.2.tar.gz
cd echoping-6.0.2
./configure
make && make install
cd ~
4、解压、编译安装smokeping
tar xf smokeping-2.6.9.tar.gz
cd smokeping-2.6.9
./setup/build-perl-modules.sh /usr/local/smokeping/thirdparty #如果有failed需要多敲几遍此命令,以保证完全安装
./configure --prefix=/usr/local/smokeping
/usr/bin/gmake install
5、配置 smokeping
mkdir /usr/local/smokeping/htdocs/cache
mkdir /usr/local/smokeping/data
mkdir /usr/local/smokeping/var
touch /var/log/smokeping.log
chown apache:apache /usr/local/smokeping/htdocs/cache
chown apache:apache /usr/local/smokeping/data
chown apache:apache /usr/local/smokeping/var
chown apache:apache /var/log/smokeping.log
chmod 600 /usr/local/smokeping/etc/smokeping_secrets.dist
cd /usr/local/smokeping/htdocs
cp smokeping.fcgi.dist smokeping.fcgi
cd /usr/local/smokeping/etc
cp config.dist config
6、更改配置文件
vim /usr/local/smokeping/etc/config
主要修改如下内容:
cgiurl = http://127.0.0.1/smokeping.cgi
imgcache = /usr/local/smokeping/htdocs/cache
*** Database ***
#step = 300
step = 60 #此处建议改为 60 , 一分钟采集一次数据
pings = 20
108行的fping路径修改为
binary = /usr/local/sbin/fping
7、编辑apache配置文件
vim /etc/httpd/conf/httpd.conf
在DocumentRoot “/var/www/html” 这一行(在292行左右)之下添加如下内容:
Alias /cache "/usr/local/smokeping/htdocs/cache"
Alias /cropper "/usr/local/smokeping/htdocs/cropper"
Alias /smokeping "/usr/local/smokeping/htdocs"
<Directory "/usr/local/smokeping/htdocs">
AllowOverride None
AddHandler cgi-script .fcgi .cgi
Options ExecCGI
<IfModule dir_module>
DirectoryIndex smokeping.fcgi
</IfModule>
Order allow,deny
Allow from all
</Directory>
8、图像浏览界面的中文支持
安装字体
yum -y install wqy-zenhei-fonts.noarch
编辑smokeping的配置文件
vim /usr/local/smokeping/etc/config
第49行添加
charset = utf-8 #添加此行
9、在Web页面增加验证用户名和密码
vim /etc/httpd/conf/httpd.conf
在<Directory “/usr/local/smokeping/htdocs”>下增加以下内容
AuthName "Smokeping"
AuthType Basic
AuthUserFile /usr/local/smokeping/htdocs/htpasswd
Require valid-user
设置账号密码
htpasswd -c /usr/local/smokeping/htdocs/htpasswd admin
10、添加监控节点
vim /usr/local/smokeping/etc/config
############################################################
+dianxin #一级菜单menu = 中国电信 #一级菜单显示名称
title = 中国电信 #页面内标题
++beijingdianxin # 节点名称(非中文)
menu = 北京电信 # 左侧选项显示名称
title = 北京市电信 202.97.0.1 # 节点页面顶部显示名称
host = 202.97.0.1 #主机IP
######################################################
11、编写启动脚本
vim /etc/init.d/smokeping ############################################################
#!/bin/bash
#
# chkconfig: 2345 80 05
# Description: Smokeping init.d script
# Write by : linux-Leon_xiedi
# Get function from functions library
. /etc/init.d/functions
# Start the service Smokeping
function start() {
echo -n "Starting Smokeping: "
/usr/local/smokeping/bin/smokeping >/dev/null 2>&1
### Create the lock file ###
touch /var/lock/subsys/smokeping
success $"Smokeping startup"
echo
}
# Restart the service Smokeping
function stop() {
echo -n "Stopping Smokeping: "
kill -9 `ps ax |grep "/usr/local/smokeping/bin/smokeping" |
grep -v grep | awk '{ print $1 }'` >/dev/null 2>&1
### Now, delete the lock file ###
rm -f /var/lock/subsys/smokeping
success $"Smokeping shutdown"
echo
}
#Show status about Smokeping
function status() {
NUM="`ps -ef|grep smokeping|grep -v grep|wc -l`"
if [ "$NUM" == "0" ];then
echo "Smokeping is not run"
else
echo "Smokeping is running"
fi
}
### main logic ###
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status
;;
restart|reload)
stop
start
;;
*)
echo $"Usage: $0
{start|stop|restart|reload|status}"
exit 1
esac
exit 0
###########################################################
chmod +x /etc/init.d/smokeping
service httpd restart
service smokeping restart