**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
7天前关闭。
Improve this question
我已经创建了一个.jmx文件与10个用户,我想在Mobaxterm的服务器上运行它,并获得结果到csv文件。这个过程是在我的本地机器上工作,没有任何问题。但在Mobaxterm服务器,csv文件总是0字节。(运行时不写入任何内容)
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.thoughtworks.xstream.core.util.Fields (file:/usr/share/java/xstream.jar) to field java.util.TreeMap.comparator
WARNING: Please consider reporting this to the maintainers of com.thoughtworks.xstream.core.util.Fields
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
Security framework of XStream not explicitly initialized, using predefined black list on your own risk.
Creating summariser <summary>
Created the tree successfully using Rainbow2.jmx
Starting the test @ Tue Nov 01 17:11:08 IST 2022 (1667302868796)
Waiting for possible shutdown message on port 4445
summary = 0 in 0s =******/s Avg: 0 Min: 9223372036854775807 Max: -9223372036854775808 Err: 0 (0.00%)
Tidying up ... @ Tue Nov 01 17:11:19 IST 2022 (1667302879844)
... end of run
这是我在控制台中得到的,当我开始运行的命令
有什么问题吗?,在inernet中没有jmx和mobaxterm的教程,请帮助我
我试过这台本地机器,一切都很顺利,我已经在服务器上安装了java和jmeter,所以命令运行没有任何错误
1条答案
按热度按时间rslzwgfq1#
这一行:
表示未执行采样器
您需要查看jmeter.log文件-它包含失败的原因/根本原因。
最常见的问题有:
1.您正在使用CSV数据集配置,但忘记将CSV文件与脚本沿着复制,或者文件的位置不匹配。
1.您使用的是JMeter Plugins,而您尝试运行.jmx脚本的JMeter安装程序中至少有一个没有安装。
1.您依赖于第三方.jar文件,例如JDBC driver,而目标JMeter安装的类路径中没有该文件
1.这个脚本是在较早的JMeter版本中创建的,而您正试图用较新的版本运行它,反之亦然