如何在ssh之后在Jmeter中运行Mysql查询到amazon实例中

时间:2016-06-28 07:31:00

标签: mysql ssh jmeter jmeter-plugins

我可以在SSH进入实例后使用 SSH Sampler插件 SSH到亚马逊实例我想运行Mysql查询来编辑数据库条目。

我可以在SSH之后运行cd,ls等命令但无法运行Mysql查询。

Mysql查询在终端上运行时工作正常。

以下是SSH Sampler插件的快照

enter image description here

1 个答案:

答案 0 :(得分:0)

选项1:使用mysql execute之类的:

mysql -u root -pROOT_PASSWORD -e "YOUR_QUERY_HERE"

示例:

mysql -u root -psecret -e "use mysql; select name, url from help_topic limit 5;"

MySQL Command Execution Demo

选项2:使用JDBC Request采样器。

鉴于你有:

如果需要加载测试MySQL实例,您应该能够使用JDBC Request Sampler运行任意查询 - 这将是继续进行的最佳方式。

有关详细说明,请参阅The Real Secret to Building a Database Test Plan With JMeter文章。