文档库 最新最全的文档下载
当前位置:文档库 › 详解linux下使用IOMETER测试磁盘IO性能

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

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

详解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.

https://www.wendangku.net/doc/3616624508.html,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的所有磁盘映射如下图:

这样就可以直接在windows下对linux磁盘进行测试,测试方法和windows方法一致见《手把手教你如何使用IOMETER测试工具测试存储》。

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

2012年06月18日?Linux平台?评论数 5?浏览:8588 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.

https://www.wendangku.net/doc/3616624508.html,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的所有磁盘映射如下图:

这样就可以直接在windows下对linux磁盘进行测试,测试方法和windows方法一致见

tgz

tar -zxvf 〈文件名〉

之后,进入目录,执行

../configure

make install

./install

rpm

rpm -ivh <文件名>

如何使用windows下的iometer看linux下的dynamo运行结果?

20

如题。我已经在linux和windows下成功安装iometer了。

参考网上各种使用指南,我的步骤是这样:

1.修改windows下的host表,添加dynamo_computer_ip dynamo_computer_name 其中,dynamo_computer_ip是运行dynamo的linux机器的ip ,

dynamo_computer_name是运行dynamo的linux机器的名字

2.运行windows下的iometer

3.运行linux下的 # ./dynamo -i 59.71.9

4.44 -m 59.71.94.45

(linux机器的ip为59.71.94.45,windows机器的ip为59.71.94.44)

运行的结果如下:——————————————————————————————————————————

[rootvivian home]# cd iometer-2006_07_27.linux.i386-bin

[rootvivian iometer-2006_07_27.linux.i386-bin]# ls

CHANGELOG CREDITS DEVGUIDE LICENSE README src

[rootvivian iometer-2006_07_27.linux.i386-bin]# cd src

[rootvivian src]# ls

dynamo iomtr_kstat scripts

[rootvivian src]# ./dynamo -i 59.71.94.44 -m 59.71.94.45

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

unless you are running dynamo on XSCALE CPU.

Command line parameter(s):

Looking for Iometer on "59.71.94.44"

Sending login request...

vivian

59.71.94.45 (port 44722)

Successful PortTCP::Connect

- port name: 59.71.94.44

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

*** you use a correct -m that

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

——————————————————————————————————————————

linux上显示连接成功,但是windows上面一直无法看到连接网络后的结果。手动添加网络连接后只能出现windows机的ip。

我有些疑问想请教高手们:

1.在host表中的那行是否得在之前加#?

2.windows下一打开iometer就会同时打开windows下的dynamo,这时候是否应关掉windows下的dynamo么?

3.windows下的iometer与linux下的dynamo哪个先打开?

4.如何正确将win下的iometer和linux下的dynamo连接上?

大家~~

作业系统: All 32-bit MS Windows (95/98/NT/2000/XP), MacOSX, Linux, Other, SunOS/Solaris, Windows NT/2000, Windows XP

DL iometer-1.1.0-rc1-win32.i386-bin.zip 日期: 2010-11-20, 大小: 2215524

DL iometer-1.1.0-rc1-osx.intel.ppc-bin.dmg 日期: 2010-11-21, 大小: 680267

DL iometer-1.1.0-rc1-src.tar.bz2日期: 2010-12-02, 大小: 2443056

DL iometer-1.1.0-rc1-src.tar.bz2日期: 2010-12-02, 大小: 2443056

DL iometer-1.1.0-rc1-src.tar.bz2日期: 2010-12-02, 大小: 2443056

List of release files

File/Folder Name File Type 大小日期

Latest 5 files

iometer-1.1.0-rc1-src.tar.bz2application/x-bzip2;

charset=binary

2.4 MB 2010-12-02 02:21

iometer-1.1.0-rc1-osx.intel.ppc-bin. dmg application/octet-stream;

charset=binary

664.3 KB 2010-11-21 04:03

iometer-1.1.0-rc1-win64.x86_64-bin.z ip application/zip;

charset=binary

2.2 MB 2010-11-20 13:33

iometer-1.1.0-rc1-win64.ia64-bin.zip application/zip;

charset=binary

2.7 MB 2010-11-20 13:31

iometer-1.1.0-rc1-win32.i386-bin.zip application/zip;

charset=binary

2.2 MB 2010-11-20 13:28

相关文档