CentOS 6.5搭建Smokeping平台上

1、添加EPEL和RPMForge第三方源

如果是i686平台:

rpm-ivhhttp://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm-ivhhttp://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el6/en/i386/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.i686.rpm

如果是x86_64平台:

rpm-ivhhttp://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm-ivhhttp://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm


2、安装rrdtool与依赖库

yum-yinstallperlperl-Net-Telnetperl-Net-DNSperl-LDAPperl-libwww-perlperl-RadiusPerlperl-IO-Socket-SSLperl-Socket6perl-CGI-SpeedyCGIperl-FCGIperl-CGI-SpeedCGIperl-Time-HiResperl-ExtUtils-MakeMakerperl-RRD-Simplerrdtoolrrdtool-perlcurlfpingechopinghttpdhttpd-develgccmakewgetlibxml2-devellibpng-develglibpangopango-develfreetypefreetype-develfontconfigcairocairo-devellibart_lgpllibart_lgpl-develmod_fastcgiscreen


3、下载与安装smokeping

wgethttp://oss.oetiker.ch/smokeping/pub/smokeping-2.6.11.tar.gz
tar-zxvfsmokeping-2.6.11.tar.gz
cdsmokeping-2.6.11
./setup/build-perl-modules.sh/usr/local/smokeping/thirdparty
./configure--prefix=/usr/local/smokeping
/usr/bin/gmakeinstall

注:解决“checking checkingfor perl module ‘RRDS’…Failed”的问题

如果是编译安装的rrdtool,所以perl没找到认路径下它的模块,需要手工拷贝过去。

先搜素 find / -name RRDs.pm

cp xxx/xxx/RRDs.pm /usr/lib/perl5/

cp xxx/xxx/RRDs.so /usr/lib/perl5/

若是64位的服务器,则cp to /usr/lib64/perl5/


4、配置smokeping

1)创建cache、data、var目录

mkdir-p/usr/local/smokeping/cache/usr/local/smokeping/data/usr/local/smokeping/var

2)创建日志文件

touch/var/log/smokeping.log

3)授权

chownapache:apachecachedatavar
chownapache:apache/var/log/smokeping.log

4)修改配置文件

cd/usr/local/smokeping/htdocs/
mvsmokeping.fcgi.distsmokeping.fcgi
cd/usr/local/smokeping/etc
mvconfig.distconfig
vimconfig
cgiurl=http://XXX.XXX.53.223/smokeping.cgi
charset=utf-8

5)修改密码文件权限

chmod600/usr/local/smokeping/etc/smokeping_secrets.dist

6)修改apache的配置

vim/etc/httpd/conf/httpd.conf
DocumentRoot"/var/www/html"
Alias/cache"/usr/local/smokeping/cache/"
Alias/cropper"/usr/local/smokeping/htdocs/cropper/"
Alias/smokeping"/usr/local/smokeping/htdocs/smokeping.fcgi"
<Directory"/usr/local/smokeping">
AllowOverrideNone
OptionsAll
AddHandlercgi-script.fcgi.cgi
Orderallow,deny
Allowfromall
DirectoryIndexsmokeping.fcgi
</Directory>

7)开机启动与安全策略

echo"/usr/local/smokeping/bin/smokeping--logfile=/var/log/smokeping.log2>&1&">>/etc/rc.local
chkconfighttpdon
iptables-tfilter-IINPUT-ptcp--dport80-jACCEPT
setenforce0


5、测试验证

wKiom1mJf_nRG49GAACcie8zYzs280.png-wh_50

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native