- 论坛徽章:
- 0
|
prepare
1. download resources. include rrdtool, smokeping , fping and echoping
2. install resources
Part I installation:
1. install rrdtool ;
tar -zxvf rrdtool.tar.gz
cd rrdtool-1.3.4
./configure
make
make install
2. install fping ; (fping-2.4-1.b2.2.el5.rf.i386.rpm)
rpm -ihv fping-2.4-1.b2.2.el5.rf.i386.rpm
3. install echoping ; (echoping-6.0.2-tar.gz)
tar -zxvf echoping-6.0.2-tar.gz
cd echoping-6.0.2
./configure
make
make install
4. install webserver ; ( apache server default has been installed )
5. install per5.8.8 ; (perl default has been installed)
6. install SpeedyCGI ;
tar -vxvf CGI-SpeedyCGI-2.22.tar.gz
cd CGI-SpeedyCGI-2.22
SpeedyCGI speeds up CGIs written in perl dramatically by making them memory resident and handing new request to the script which is already running. SmokePing has been optimized for use with SpeedyCGI. Note that you do NOT need mod_speedy, just the plain and simple speedy executable, this is the beauty of this tool it works without touching your apache ... Otherwise you could as well be using FastCGI or mod_perl. There is a bug in speedy with returning error messages to the apache error log. You can find a patch in the smokeping download area.
perl Makefile.PL
make
make test
make install
7. install smokeping
tar zxvf smokeping-2.4.1.tar.gz
mv smokeping-2.4.1/usr/local
cd /usr/local/smokeping-2.4.1
Part II Implementation:
1. create work and data directories , and permission for directories
mkdir /usr/local/smokevar/data
mkdir /usr/local/smokevar/etc
mkdir /usr/local/smokevar/img
chown apache:apache /usr/local/smokevar/img
ln -s /usr/local/smokevar/img /var/www/img
2. configure smokeping
1). copy flies
cd /usr/local/smokeping-2.4.1
cp bin/smokeping.dist bin/smokeping
cp etc/basepage.html.dist /usr/local/smokevar/etc/basepage.html
cp etc/config.dist /usr/local/smokevar/etc/config
cp etc/smokemail.dist /usr/local/smokevar/etc/smokemail
2). edit files
l vi /usr/local/smokeping-2.4.1/bin/smokeping
modify:
use lib qw(/usr/local/rrdtool-1.3.7/lib/perl/5.8.8/i386-linux-thread-multi);
use lib qw(/usr/local/smokeping-2.4.1/lib);
use Smokeping 2.004000;
Smokeping::main("/usr/local/smokevar/etc/config)
l vi /usr/local/smokeping-2.4.1/htdocs/smokeping.cgi
#!/usr/bin/speedy -w
# -*-perl-*-
use lib qw(/usr/local/rrdtool-1.3.7/lib/perl/5.8.8/i386-linux-thread-multi);
use lib qw(/usr/local/smokeping-2.4.1/lib);
use CGI::Carp qw(fatalsToBrowser);
use Smokeping 2.004000;
Smokeping::main("/usr/local/smokevar/etc/config)
l vi /usr/local/smokevar/etc/config
owner = Ryan Yuan
contact = yuanrengui@beyondsoft.com
mailhost = smtp.beyondsoft.com
sendmail = /usr/lib/sendmail
# NOTE: do not put the Image Cache below cgi-bin
# since all files under cgi-bin will be executed ... this is not
# good for images.
imgcache = /usr/local/smokevar/img
imgurl = http://monitor-a.beyondsoft.com/img
datadir = /usr/local/smokevar/data
piddir = /usr/local/smokevar/data
cgiurl = http://monitor-a.beyondsoft.com/cgi-bin/smokeping.cgi
smokemail = /usr/local/smokevar/etc/smokemail
tmail = /usr/local/smokevar/etc/tmail
# specify this to get syslog logging
syslogfacility = local0
# each probe is now run in its own process
# disable this to revert to the old behaviour
# concurrentprobes = no
*** Alerts ***
to =
yuanrengui@xxx.com
from =
yuanrengui@xxx.com
Part III apache web server configure:
1. edit /etc/httpd/conf/httpd.conf
modify:
DocumentRoot "/var/www/html" change to
DocumentRoot "/var/www"
insert:
Options FollowSymLinks ExecCGI
AllowOverride None
Order allow,deny
Allow from all
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
2. copy files
cp /usr/local/smokevar/etc/basepage.html /var/www
cp /usr/local/smokeping-2.4.1/htdocs/smokeping.cgi /var/www/cgi-bin/
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/104147/showart_2054634.html |
|