详解linux下使用IOMETER测试磁盘IO性能

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

详解linux下使用IOMETER测试磁盘IO 性能

2012年06月18日⁄Linux平台⁄评论数 5⁄浏览:8587 Views

前面有分享了windows下如何使用IOMETER来测试网络磁盘的IO性能,今天分享一下linux下如何使用IOMETER来测试网络磁盘的性能。在linux下和window 下工作模式有些区别:在linux上,iometer包括两部分:IOmeter主程序和执行代理,你可以在windows上安装运行iometer主程序,在linux上安装运行iometer执行代理,主程序就会把读写配置传递给执行代理来执行。

首先:在linux下安装iomter,以我的redhat 6.1 64位的操作系统为例,到iometer主页上下载版本:iometer-2008-06-22-rc2.src.tgz上传到linux中进行如下操作:

1.[root DELL-1 tmp]# tar zxvf iometer-2008-06-22-rc

2.src.tgz //解压

2.[root DELL-1 tmp]# cd iometer-2008-06-22-rc2/src //进入iometer src文件下有多个

Makefile文件找到自己需要的文件版本

3.[root DELL-1 src]# make -f Makefile-Linux.x86_64 dynamo //我的系统是64位所以选择

这个文件安装编译

可能上面的安装编译会出现make: *** [Pulsar.o] Error 1的错误,请进入《linux 64位编译iometer提示make: *** [Pulsar.o] Error 1错误的解决方法》查看解决方法。

其次:在windows下安装IONETER主程序,注意版本要和linux下的一样,我用的是:iometer-2008-06-22-rc2.win.x86_64.zip

最后:如何在linux运行iometer?

先在windows打开iometer主程序,再在linux下进入刚才的安装目录:cd /tmp/iometer-2008-06-22-rc2/src/运行如下命令:

1.[root DELL-1 src]# ./dynamo -i 17

2.18.30.7 -m 172.18.30.17

说明:-i后面用的是windows端的ip, -m后面使用的是linux的IP。

运行如上命令可以出现以下错误:

1.[root DELL-1 src]# ./dynamo -i 17

2.18.30.7 -m 172.18.30.17

2.===> ERROR: Getting host name for"DELL-1" failed.

3.[PortTCP::Create() in IOPortTCP.cpp line 238]

4.errno = 11

5.*** Could not create a TCP/IP Port. exiting.....

原因:当网络环境没有使用DNS会造成hostname和IP无法对应上。

解决方法:在linux下进入/etc配置hosts文件下的hostname如下:我的linux 命名为DELL-1所以在hosts文件的127.0.0.1后添加DELL-1。

1.[root DELL-1 etc]# cat hosts

2.127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 DELL-1一切问题都解决了,正常情况如下:

1.[root DELL-1 src]# ./dynamo -i 17

2.18.30.7 -m 172.18.30.17

2.Fail to open kstat device file. You can ignore this warning

3.unless you are running dynamo on XSCALE CPU.

4.

mand line parameter(s):

6.Looking for Iometer on "172.18.30.7"

7.

8.Sending login request...

9.DELL-1

10.172.18.30.17 (port 38250)

11.Successful PortTCP::Connect

12.- port name: 172.18.30.7

13.

14.*** If dynamo and iometer hangs here, please make sure

15.*** you use a correct -m that

16.*** can ping from iometer machine. use IP if need.

17.Login accepted.

18.Reporting drive information...

19.Set_Sizes: Open on "/sys/iobw.tst" failed (error No such file or directory).

20.Set_Sizes: Open on "/proc/sys/fs/binfmt_misc/iobw.tst" failed (error Permission

denied).

21.Set_Sizes: Open on "/var/lib/nfs/rpc_pipefs/iobw.tst" failed (error Permission

denied).

22.Physical drives (raw devices)...

23.Reporting TCP network information...

24.done.

还有一个问题要注意的是先要在windows下打开iometer主程序,再在linux 下运行上面的命令,否则可能出现问题。最后可以在windows上的iometer看到DELL-1的所有磁盘映射如下图:

相关文档
最新文档