免费注册 查看新帖 |

Chinaunix

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

AS3上MRTG的安装与配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-23 16:46 |只看该作者 |倒序浏览


首先更改snmpd的配置文件/etc/snmp/snmpd.conf
去掉view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc前面的#号
找到
access notConfigGroup "" any noauth exact systemview none none
改为
access notConfigGroup "" any noauth exact mib2 none none
然后启动snmpd
service snmpd start
下载mrtg2.10
由于AS3的gd库安装完之后没有gd.h
所以要重新安装gd库
下载libpng-1.2.7、libjpeg(jpegsrc.v6b)、gd-1.8.4
首先安装libpng
进入源文件目录
make prefix=/usr ZLIBINC=/usr/include ZLIBLIB=/usr/lib -f scripts/makefile.linux &&
make prefix=/usr install -f scripts/makefile.linux
安装libjpeg
进入源文件目录
./configure --enable-static --enable-shared --prefix=/usr &&
make &&
make install
安装gd
进入gd源文件目录
make
make install
安装mrtg
./configure --prefix=/usr/local/mrtg --with-gd=/usr/include --with-gd-lib=/usr/lib --with-gd-inc=/usr/include --with-png=/usr/include --with-png-lib=/usr/lib --with-zlib=/usr/include --with-zlib-lib=/usr/lib
make
make install
假定apache配置的网站主目录为/www,要监测的网卡地址为192.168.0.1
在www目录下建立mrtg文件夹
mkdir /www/mrtg
生成mrtg配置文件
/usr/local/mrtg/bin/cfgmaker public@192.168.0.1 > /www/mrtg/mrtg.cfg
打开mrtg.cfg
更改WorkDir为/www/mrtg
去掉Options[_]: growright, bits前面的#号
在里面加入一行Language:chinese使之支持中文
接着运行
/usr/local/mrtg/mrtg /www/mrtg/mrtg.cfg
需要连续运行三次
现在即可观察服务器网卡的流量信息
为了能让系统自动刷新数据
需要把程序加入后台定时运行
crontab -e
然后在里面加入一行
*/5 * * * * /usr/local/mrtg/mrtg /www/mrtg/mrtg.cfg
每5分钟刷新一次
监测apache连接数
在mrtg.cfg中加入
Target[apache_conn]: `/root/bin/mrtg.apa.pl`
Options[apache_conn]: gauge,nopercent,growright
Directory[apache_conn]:apache_conn
MaxBytes[apache_conn]: 4000
YLegend[apache_conn]: apache_conn
ShortLegend[apache_conn]: 个
LegendI[apache_conn]: apache总连接数:
LegendO[apache_conn]: apache当前连接数
Title[apache_conn]: apache连接数
PageTop[apache_conn]: <h1>apache连接数</h1>
mrtg.apa.pl代码为
#!/usr/bin/perl
$hostname=`hostname`;
$hostname=~s/\s+$//;
$apache_all_conn=`netstat -an|grep 192.168.0.1:80|wc -l`;
$apache_conn=`netstat -an|grep 192.168.0.1:80|grep ESTABLISHED|wc -l`;
$apache_all_conn=~s/\n$//;
$apache_conn=~s/\n$//;
$apache_all_conn=~s/^\s+|\s+$//;
$apache_conn=~s/^\s+|\s+$//;
$gettime=`uptime|awk '{print \$1" "\$3" "\$4}'`;
$gettime=~s/\,|\n$//g;
print("$apache_all_conn\n");
print("$apache_conn\n");
print("$gettime\n");
print("$hostname\n");
获取本机CPU使用情况
下载并安装sysstat-5.1.1.i386.rpm
在mrtg.cfg中加入
Target[CPU]: `/root/bin/cpu.sh`
MaxBytes[CPU]: 100
Title[CPU]: CPU Watch
PageTop[CPU]: <H1> CPU Watch</H1>
Options[CPU]: gauge,nopercent,growright
Ylegend[CPU]: CPU Loading (%)
YSize[CPU]: 100
ShortLegend[CPU]: %
LegendI[CPU]: CPU USER
LegendO[CPU]: CPU SYSTEM
cpu.sh代码为
#!/bin/bash
tmp=`sar -u 1 5 | tail -n 1`
cpuuser=`echo $tmp | awk ' {print $3}' `
cpusystem=`echo $tmp | awk ' {print $5}' `
echo $cpuuser
echo $cpusystem
echo 0
echo `hostname`
获取本机内存/Swap使用情况
在mrtg.cfg中加入
Target[MEMORY]: `/root/bin/memory.sh`
MaxBytes[MEMORY]: 100
Title[MEMORY]: Memory & Swap Watch
PageTop[MEMORY]: <H1> Memory & Swap Watch</H1>
Options[MEMORY]: gauge,growright
Ylegend[MEMORY]: Used (%)
YSize[MEMORY]: 100
ShortLegend[MEMORY]: %
LegendI[MEMORY]: Used Memory
LegendO[MEMORY]: Used Swap
memory.sh代码为
#!/bin/bash
tmp=`sar -r 1 5 | tail -n 1`
memory=`echo $tmp | awk ' {print $4}' `
swap=`echo $tmp | awk ' {print $9}' `
echo $memory
echo $swap
echo 0
echo `hostname`


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/3188/showart_77697.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP