Use IOmeter under Linux

IOmeter is a collection of tools for running detailed IO benchmarks. It is often used as the tool is able to reproduce the characteristics of current applications and services. IOmeter consists of a management software that manages and evaluates the particular tests and Dynamo - an executable that run these tests in multiple threads on the local or a remote computer.

Beside Windows, the last version of IOmeter also supports Linux on 32- and 64-bit machines. The graphical management software for controlling the tests is only available on Windows, for Linux systems only the worker engine dynamo can be downloaded. This engine can be downloaded on the project website. Older versions are also available for NetWare, Solaris and Linux for the dowdy architectures XScale and PowerPC.

For communicating with the management station, Dynamo uses a random high TCP port - it is not possible to configure a fixed value. For debugging and testing setups it might be easier to temporarily disable the local firewall of the system you want to benchmark. It might also be a good idea to also disable SELinux for the test:

1# wget http://sourceforge.net/projects/iometer/files/iometer-stable/1.1.0/iometer-1.1.0-linux.x86_64-bin.tar.bz2/download
2# tar xf iometer-1.1.0-linux.x86_64-bin.tar.bz2
3# service iptables stop ; setenforce 0

Afterwards dynamo can be started on a host (mySrv in this example) like this to be managed by a Windows PC (myDesk in this example):

1mySrv # ./dynamo -i myDesk -m mySrv

The switch -i defines the the name of the Windows machine running IOmeter. It is recommended to start dynamo after IOmeter. The hostname of the system that should be benchmarked is assigned using the switch -m - that value is used by IOmeter on the Windows system. If you have problems with DNS you can also assign the IP. To assign a readable name to the IP inside IOmeter you can specify a string along with the optional switch -n:

1mySrv # ./dynamo -i 10.22.1.29 -m 10.22.1.32 -n mySrv

Afterwards, dynamo establishes a connection to the management software and starts scanning the host for devices:

 1Dynamo version 1.1.0, x86-64, built Mar 25 2014 22:08:27
 2
 3Command line parameter(s):
 4 Looking for Iometer on "myDesk"
 5 New manager name is "myDesk"
 6Sending login request...
 7 mySrv
 8 10.22.1.32 (port 39472)
 9Successful PortTCP::Connect
10 - port name: 10.22.1.29
11
12*** If dynamo and iometer hangs here, please make sure
13*** you use a correct -m <manager_computer_name> that
14*** can ping from iometer machine. use IP if need.
15 Login accepted.
16Reporting drive information...

In this example the TCP port 39472 is used. If you don't want to disable the local firewall you will need to open this port.

Afterwards the system is shown in IOmeter. Now it is possible to configure the particular drives and test scenarios:

IOmeter + Linux

Don't forget to enable the local firewall and - if used - SELinux after benchmark tests:

1# service iptables start ; setenforce 1

Translations: