博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
smokeping 安装与配置
阅读量:6576 次
发布时间:2019-06-24

本文共 2720 字,大约阅读时间需要 9 分钟。

  hot3.png

    smokeping的介绍 搭建的目的: smokeping 有一个快照的功能,在一段时间能能够自然存取快照, 平常我们网络问题,发给机房一个mtr的截图,机房不会给予理会,或是反馈一个是网络没有问题,但是对于我们来说就很不方便 参考: 环境: [root etc]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.6 (Tikanga) 安装步骤: 1安装 fping [sourcecode lanage="shell"] wget http://dag.wieers.com/rpm/packages/fping/fping-2.4-1.b2.2.el5.rf.x86_64.rpm [/sourcecode] 2 安装CGI-SpeedyCGI [sourcecode language="perl"] wget http://fossies.org/unix/www/CGI-SpeedyCGI-2.22.tar.gz tar zxvf CGI-SpeedyCGI-2.22.tar.gz cd CGI-SpeedyCGI-2.22 perl Makefile.PL make make test make install [/sourcecode] 3 安装 freetype-devel zlib-devel libpng-devel libart_lgpl [sourcecode lanage="shell"] yum install -y freetype-devel zlib-devel libpng-devel libart_lgpl [/sourcecode] 4 安装rrdtool [sourcecode lanage="shell"] wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.2.26.tar.gz cd rrdtool-1.2.26 ./configure --prefix=/usr/local/rrdtool make make install [/sourcecode] 5 安装smokeping [sourcecode lanage="shell"] wget http://oss.oetiker.ch/smokeping/pub/smokeping-2.4.2.tar.gz tar xvzf smokeping-2.4.2.tar.gz mv smokeping-2.4.2 /usr/local/smokeping chown -R root:root /usr/local/smokeping cd /usr/local/smokeping/bin for foo in *.dist; do cp $foo `basename $foo .dist`; done cd /usr/local/smokeping/etc/ for foo in *.dist; do cp $foo `basename $foo .dist`; done cd /usr/local/smokeping/htdocs for foo in *.dist; do cp $foo `basename $foo .dist`; done vi /usr/local/smokeping/bin/smokeping #cp /usr/local/smokeping/htdocs/smokeping.cgi /var/www/cgi-bin #vi /usr/local/smokeping/etc/config imgcache = /var/www/html/smokeping/img imgurl = http://118.194.161.116/smokeping/img datadir = /usr/local/smokeping/var piddir = /tmp/smokeping-ms/var cgiurl = http://118.194.161.116/cgi-bin/smokeping.cgi smokemail = /usr/local/smokeping/etc/smokemail tmail = /usr/local/smokeping/etc/tmail template = /usr/local/smokeping/etc/basepage.html #mkdir -p /var/www/html/smokeping/img #chown -R apache:apache /var/www/html/smokeping/img #mkdir /usr/local/smokeping/var #chmod 400 /usr/local/smokeping/etc/smokeping_secrets.dist     -----这个如果没有更改的话,会报错误,可以试下。 #/usr/local/smokeping/bin/smokeping & [/sourcecode] 到这里几乎是已经安装的差不多了 现在就是页面的一些配置 [sourcecode lanage="shell"] vi /etc/httpd/conf/httpd.conf Listen 8001 <VirtualHost *:8001> DocumentRoot /usr/local/smokeping ServerName 118.194.161.116 AddHandler cgi-script .cgi <Directory "/usr/local/smokeping/htdocs/"> AllowOverride None Options ExecCGI Indexes Order allow,deny Allow from all </Directory> ErrorLog logs/ping-error_log CustomLog logs/ping-access_log common </VirtualHost> [/sourcecode] 因为80端口被占用了,现在临时用一个8001端口 [sourcecode lanage="shell"] #/etc/init.d/httpd restart [/sourcecode] 访问:

转载于:https://my.oschina.net/766/blog/211453

你可能感兴趣的文章
label文字居中
查看>>
在SpringMVC中使用Jackson并格式化时间
查看>>
lk进kernel
查看>>
Android开发之监听发出的短信
查看>>
Android调用系统自带的文件管理器进行文件选择
查看>>
Data source rejected establishment of connection, message from server: "Too many connections"
查看>>
Java编程介绍
查看>>
OpenHaptics编程环境搭建
查看>>
ubuntu 14.04为/检查磁盘时发生严重错误的解决方法
查看>>
【Android界面实现】使用PagerTabStrip实现有滑动标签的Viewpager
查看>>
【微信小程序】 引用公共js里的方法
查看>>
LeetCode First Missing Positive
查看>>
阿里大数据比赛排名获取2
查看>>
小改进:估算每日出标量
查看>>
Selenium Grid的Java调用方法
查看>>
5 -- Hibernate的基本用法 --5 2 持久化对象的状态
查看>>
Maven项目settings.xml的配置
查看>>
k8s api server ha 连接配置问题
查看>>
第一部分、十道海量数据处理面试题
查看>>
Silverlight中使用MVVM(6):AutoComplteBox的异步过滤
查看>>