Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2323129
  • 博文数量: 535
  • 博客积分: 8689
  • 博客等级: 中将
  • 技术积分: 7066
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-26 10:00
文章分类

全部博文(535)

文章存档

2024年(4)

2023年(4)

2022年(16)

2014年(90)

2013年(76)

2012年(125)

2011年(184)

2010年(37)

分类: 系统运维

2012-10-10 17:52:03




bash-3.2# cat /nmon/cmd/nmon_day.sh 
cd /nmon/day/
gzip *nmon
find /nmon/day/* -mtime 30 -exec rm {} \;
/nmon/cmd/nmon12e_aix537 -fdt -s 300 -c 288





aix nmon工具使用,这个工具同样可以用于linux 系统






















AIX下用nmon进行监控和分析实战

 12年08月17日 13:40 【转载】 作者:博客 责任编辑:赵航

导读:AIX下用nmon进行监控和分析实战

关键词: 

AIX下用nmon进行监控和分析实战

nmon从这里下载:

http://www.ibm.com/developerworks/wikis/display/Wikiptype/nmonanalyser

1、准备:

1)用root用户登录到系统中

2)建目录:#mkdir /nmon/script

3)确定版本:#oslevel,以便确定用哪个脚本,我是用530

# oslevel -s

5300-09-01-0847

4)把nmon12e_aix530用ftp上传到/nmon/script

5)执行授权命令:#chmod +x nmon12e_aix530

2、使用:

1)直接使用:

./nmon/nmon12e_aix536 -f -N -m /nmon/log -s 30 -c 2880

表示:

-f 按标准格式输出文件:_YYYYMMDD_HHMM.nmon

-N include NFS sections

-m 切换到路径去保存日志文件

-s 每隔n秒抽样一次,这里为30

-c 取出多少个抽样数量,这里为2880,即监控=2880*(30/60/60)=24小时

根据小时计算这个数字的公式为:c=h*3600/s,比如要监控10小时,每隔30秒采样一次,则c=10*3600/30=1200

2)用crontab定期使用:

A、执行命令:#crontab -e

B、在最后一行添加如下命令:

0 8 * * 1,2,3,4,5 /nmon/script/nmon12e_aix530 -f -N -m /nmon/log -s 30 -c 1200

表示:

周一到周五,从早上08点开始,监控10个小时(到18:00整为止),输出到/nmon/log

3、分析

1)会在/tmp/nmon生成*.nmon的文件把它下载到你的电脑上

2)打开nmon analyser v339.xls,把宏的安全性设成最低,打开下载好的*.nmon文件。

并且保存为一个文件,生成的是视图模式的,非常直观!

参考:

附录一:crontab参数:

参考:

f1 f2 f3 f4 f5 program

minute hour day_of_month month weekday command这些字段接收以下值:

minute 0 到 59

hour 0 到 23

day_of_month 1 到 31

month 1 到 12

weekday 0 到 6(星期天到星期六)

其中f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程序。

当 f1 为 * 时表示每分钟都要执行 program,f2 为 * 时表示每小时都要执行程序,其馀类推

当 f1 为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要执行,f2 为 a-b 时表示从第 a 到第 b 小时都要执行,其馀类推

当 f1 为 */n 时表示每 n 分钟个时间间隔执行一次,f2 为 */n 表示每 n 小时个时间间隔执行一次,其馀类推

当 f1 为 a, b, c,... 时表示第 a, b, c,... 分钟要执行,f2 为 a, b, c,... 时表示第 a, b, c...个小时要执行,其馀类推

附录二:nmon参数:

参考http://www.ibm.com/developerworks/wikis/display/Wikiptype/nmonanalyser

nmon:

-f spreadsheet output format [note: default -s300 -c288]

Output file is _YYYYMMDD_HHMM.nmon

-F same as -f but user supplied filename

-c number of snapshots

-d requests disk service and wait times (DISKSERV and DISKWAIT)

-i Ignore processes using less than this amount of CPU when generating TOP section – useful for reducing data volumes

-g file containing disk group definitions

-l number of hdisks per sheet - defaults to 150, maximum 250. See notes

-m

NMON changes to this directory before saving the file

-r goes into spreadsheet file [default hostname]

-s interval between snap shots

-x capacity planning (15 mins for 1 day = -fdt -s900 -c96)

-t include top processes in the output

-T as –t plus saves command line arguments in UARG section

-A include data for async I/O (PROCAIO) sections

-D prevents DISK sections being produced (useful when Disk Groups are being used because there are too many hdisks to process)

-E stops ESS sections being produced (necessary when Disk Groups are being used because there are too many vpaths to process)

-J prevents JFS sections being produced (prevents Excel errors when you have more than 255 filesystems)

-L includes LARGEPAGE section

-N include NFS sections

-S include WLM sections with subclasses

-W include WLM sections without subclasses

-Y include SUMMARY section (very efficient alternative to –t if PID level data is not required)

example: nmon_aix51 -F asterix.nmon -r Test1 -s6 -c12

posted on 2009-02-19 20:24 IT进行时 阅读(4975) 评论(4) 编辑 收藏

评论

# re: AIX下用nmon进行监控和分析实战 2009-03-25 15:46 无名网

写得不错,很多的文章一样的问题那就是没有说当nmon收到参数以的都是以daemon的形式运行的。开始的时候我就认为他没有工作,后来对产生的文件进行监控才发一它是以daemon的形式运行的。 回复 更多评论

下面是cronatab 服务的man :

Examples

1 To copy a file called mycronjobs into the /var/spool/cron/crontabs directory, enter the following:

crontab mycronjobs

The file will be copied as:

/var/spool/cron/crontabs/

where is your current user name.

2 To write the time to the console every hour on the hour, enter:

0 * * * * echo The hour is `date` .

>/dev/console

3 To run the calendar command at 6:30 a.m. every Monday, Wednesday, and Friday, enter:

30 6 * * 1,3,5 /usr/bin/calendar

4 To run the calendar command every day of the year at 6:30, enter the following:

30 6 * * * /usr/bin/calendar

5 To run a script called maintenance every day at midnight in August, enter the following:

0 0 * 8 * /u/harry/bin/maintenance

6 To define text for the standard input to a command, enter:

0 16 * 12 5 /usr/sbin/wall%HAPPY HOLIDAY!%Remember to

turn in your time card.

The text following the % (percent sign) defines the standard input to the wall command as:

HAPPY HOLIDAY!

Remember to turn in your time card.

名称 : crontab

使用权限 : 所有使用者

使用方式 :

crontab [ -u user ] file

crontab [ -u user ] { -l | -r | -e }

说明 :

crontab 是用来让使用者在固定时间或固定间隔执行程序之用,换句话说,也就是类似使用者的时程表。-u user 是指设定指定 user 的时程表,这个前提是你必须要有其权限(比如说是 root)才能够指定他人的时程表。如果不使用 -u user 的话,就是表示设定自己的时程表。

参数 :

crontab -e : 执行文字编辑器来设定时程表,内定的文字编辑器是 VI,如果你想用别的文字编辑器,则请先设定 VISUAL 环境变数来指定使用那个文字编辑器(比如说 setenv VISUAL joe)

crontab -r : 删除目前的时程表

crontab -l : 列出目前的时程表

crontab file [-u user]-用指定的文件替代目前的crontab。

时程表的格式如下 :

f1 f2 f3 f4 f5 program

其中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程序。

当 f1 为 * 时表示每分钟都要执行 program,f2 为 * 时表示每小时都要执行程序,其馀类推

当 f1 为 a-b 时表示从第 a 分钟到第 b 分钟这段时间内要执行,f2 为 a-b 时表示从第 a 到第 b 小时都要执行,其馀类推

当 f1 为 */n 时表示每 n 分钟个时间间隔执行一次,f2 为 */n 表示每 n 小时个时间间隔执行一次,其馀类推

当 f1 为 a, b, c,... 时表示第 a, b, c,... 分钟要执行,f2 为 a, b, c,... 时表示第 a, b, c...个小时要执行,其馀类推

使用者也可以将所有的设定先存放在档案 file 中,用 crontab file 的方式来设定时程表。

例子1 :

Quote:#每天早上7点执行一次 /bin/ls :

0 7 * * * /bin/ls

在 12 月内, 每天的早上 6 点到 12 点中,每隔3个小时执行一次 /usr/bin/backup :

0 6-12/3 * 12 * /usr/bin/backup

周一到周五每天下午 5:00 寄一封信给 alex@domain.name :

0 17 * * 1-5 mail -s "hi" alex@domain.name < /tmp/maildata

每月每天的午夜 0 点 20 分, 2 点 20 分, 4 点 20 分....执行 echo "haha"

20 0-23/2 * * * echo "haha"

注意 :

当程序在你所指定的时间执行后,系统会寄一封信给你,显示该程序执行的内容,若是你不希望收到这样的信,请在每一行空一格之后加上 > /dev/null 2>&1 即可

例子2 :

Quote:#每天早上6点10分

10 6 * * * date

#每两个小时

0 */2 * * * date

#晚上11点到早上8点之间每两个小时,早上8点

0 23-7/2,8 * * * date

#每个月的4号和每个礼拜的礼拜一到礼拜三的早上11点

0 11 4 * mon-wed date

#1月份日早上4点

0 4 1 jan * date

执行步骤如下:

Quote:crontab -e

添加如下内容

0 0 * * * /nmon/nmon.ksh

在nmon目录下创建nmon.ksh文件,用vi编辑器编辑

Quote:cd /nmon/

/nmon/nmon_aix53 -fdt -s 90 -c 960
































c.安装

#cd /home/monitor/nmon
#gzip nmon4aix12a.tar.gz
#tar –xf nmon4aix12a.tar
3. 运行如下命令产生报告

#nmon -f -s 30 -c 120

nmon每30秒捕获一次数据快照,共抽取120个数据快照,在当前目录下会产生app_090623_1451.nmon文件

nmon是一款很好的unix、linux下的系统性能监控工具。
下载地址:
http://www.ibm.com/developerworks/wikis/display/WikiPtype/nmon
虽然网上有很多nmon的使用安装介绍,但是我按照他们的指导都没有安装成功。自己摸索着安装成功了。不过仍然感谢这些文档的指导。

Nmon安装手册

1.必须用2进制数据格式传输到主机上,否则你明明ls看得到这个文件,解压的时候告诉你没有这个文件,this file is not exist。
ftp 192.168.*.*
用户:root
密码:****
cd /home
mkdir monitor
cd monitor
mkdir nmon
cd nmon
bin
put e:/aix/nmon/nmon4aix12a.tar.gz
你所下载的nmon的地址
2.用xmanager登录aix
#cd /home/monitor/nmon
#gzip nmon4aix12a.tar.gz

#tar –xf nmon4aix12a.tar
可能tar的时候有报错,修改文件属性为755 即可。
安装完毕、
#cd nmon4aix12a
运行监控程序

#./nmon

按空格' s# l0 J2 b' y, k& \; H  y
然后按“c”键
然后按“m”键


nmon_analyser分析系统监控数据,并有图标显示
1.下载nmon_analyser,地址:

2.这个文件不用上传到aix上,在pc上解压即可。很多人包括我都有此疑惑,解压完了就是一个doc文件NA_UserGuide v33.doc,一个xls文件nmon analyser v334.xls,怎么执行啊,怎么分析啊。请接着看。
3.在aix上运行nmon捕获数据,在当前目录下生产监控日志文件,文件以主机名和日期命名。
#./nmon -f -s 30 -c 120
nmon每30秒捕获一次数据快照
生产app_090623_1451.nmon文件,
4.将生产的app_090623_1451.nmon下载在pc上。
5.打开nmon analyser v334.xls,注意一般会报错,说宏的安全级别太高,一定要把宏的安全级别降到最低,在excel的工具-宏-安全性。
6.点击nmon analyser v334.xls文件里的按钮analyser nmon data,选择刚才下载的app_090623_1451.nmon,完成后另存为即可。

关于nmon_analyser的详细文档见NA_UserGuide v33.doc。
关于nmon的文档见 http://www.ibm.com/developerworks/cn/aix/library/analyze_aix/




阅读(1377) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~