免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1160 | 回复: 0
打印 上一主题 下一主题

smokeping install , implementation and publishing [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-17 15:51 |只看该作者 |倒序浏览

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
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP