3

我有 JMeter (2.8) 测试,这些测试在本地运行时运行良好,而在远程运行时失败。
我运行它们的唯一区别是-r开关(或-R <list of machines>),所有其他参数完全相同。

测试在远程模式下失败,因为应该包含 CSV 文件中的值的变量包含<EOF>值 - 这意味着测试无法加载 CSV 文件。

我已将 CSV 文件上传到bin每台远程机器上的 JMeter 目录(正如有人建议的那样),但这无济于事。

我正在使用Linux机器。

4

2 回答 2

4

来自 Jmeter 文档:

Relative file names are resolved with respect to the path of the active test plan.
For distributed testing, the CSV file must be stored on the server host system in the 
correct relative directory to where the jmeter server is started.</b>
Absolute file names are also supported, but note that they are unlikely to work in remote 
mode, unless the remote server has the same directory structure.

另一种选择是使用变量作为 CSV 文件的基本文件夹,并在每个远程服务器上启动时设置它:

-Jresdir=<CSV Folder>
于 2013-01-04T15:55:43.130 回答
1

原来 jmeter-server 正在路径“jmeter/file-from-ui.csv”上寻找一些东西。通过使用 strace 找到了这个。

我通过在我启动 jmeter-server 的目录中添加一个 jmeter 文件夹并将我的 csv 文件放在那里解决了我的问题。

于 2013-10-16T11:24:06.317 回答