【转】Jmeter分布式压力测试
安装
下载地址:http://jmeter.apache.org/download_jmeter.cgi
安装前提(因为jmeter依赖于Java所以必须先配置好java)
下载后解压:
tar -xvzf apache-jmeter-3.1.tgz
Jmeter参数
- -h, --help
- print usage information and exit
- #打印帮助信息
- -v, --version
- print the version information and exit
- #打印版本信息
- -p, --propfile {argument}
- the jmeter property file to use
- #运行时指定property文件,默认是使用JMETER_HOME/bin目录下的jmeter.properties,如果用户自定义有其它的配置,在这里加上
- #用法如下: -p user.properties
- -q, --addprop {argument}
- additional property file(s)
- #其它配置文件,如JVM参数等等
- -t, --testfile {argument}
- the jmeter test(.jmx) file to run
- #要运行的jmeter脚本
- -j, --jmeterlogfile {argument}
- the jmeter log file
- #指定记录jmeter log的文件,默认为jmeter.log
- -l, --logfile {argument}
- the file to log samples to
- #记录采样器Log的文件
- -n, --nongui
- run JMeter in nongui mode
- #以nongui模式运行jmeter
- -s, --server
- run the JMeter server
- #运行JMeter server
- -H, --proxyHost {argument}
- Set a proxy server for JMeter to use
- #代理服务器地址
- -P, --proxyPort {argument}
- Set proxy server port for JMeter to use
- #代理服务器端口
- -u, --username {argument}
- Set username for proxy server that JMeter is to use
- #代理服务器的用户名
- -a, --password {argument}
- Set password for proxy server that JMeter is to use
- #代理服务器用户名对应的密码
- -J, --jmeterproperty {argument}={value}
- Define additional JMeter properties
- #定义额外的Jmeter属性
- -G, --globalproperty (argument)[=(value)]
- Define Global properties (sent to servers)
- e.g. -Gport=123
- or -Gglobal.properties
- #定义发送给server的全局属性
- #如:-Gport=123 或者-Gglobal.properties(指定监听server的端口)
- -D, --systemproperty {argument}={value}
- Define additional System properties
- #定义系统属性
- -S, --systemPropertyFile {filename}
- a property file to be added as System properties
- #通过指定的property文件定义系统属性
- -L, --loglevel {argument}={value}
- Define loglevel: [category=]level
- e.g. jorphan=INFO or jmeter.util=DEBUG
- #定义日志等级
- -r, --runremote (non-GUI only)
- Start remote servers (as defined by the jmeter property remote_hosts)
- #启动远程server(在jmeter property中定义好的remote_hosts),公在non-gui模式下此参数才生效
- -R, --remotestart server1,... (non-GUI only)
- Start these remote servers (overrides remote_hosts)
- #启动远程server(如果使用此参数,将会忽略jmeter property中定义的remote_hosts)
- -d, --homedir {argument}
- the jmeter home directory to use
- #Jmeter运行的主目录
- -X, --remoteexit
- Exit the remote servers at end of test (non-GUI)
- #测试结束时,退出(在non-gui模式下)
配置jmeter client & server
了解了上面的各个参数后,开始配置分布式测试
先看一下官方文档是怎么说的,中文为我添加的注释:
1. the firewalls on the systems are turned off.#1.关闭防火墙
2. all the clients are on the same subnet.#2.所有的客户端都在同一个子网内
3. the server is in the same subnet, if 192.x.x.x or 10.x.x.x ip addresses are used. If the server
doesn't use 192 or 10 ip address, there shouldn't be any problems.#3.server也必须在同一子网内如果使用192.x.x.x或者10.x.x.x这样的IP地址,如果server没有使用192或者10这样的IP地址,(server同client不在同一子网内)将不会有任何问题
4. Make sure JMeter can access the server.#4.确保Jmeter可以访问到server
5. Make sure you use the same version of JMeter on all the systems. Mixing versions may not work
correctly.#5.确保各系统的Jmeter版本保持一致,不同版本的Jmeter将不能很好的工作
一些术语的解释:
· master,以GUI模式运行,同时控制测试的运行,在这里就是client,启动脚本所在的那台机器。
· slave,运行jmeter-server并从master接收指令、向目标服务器发送请求
设置jmeter-server:
用文本编辑器打开JMETER_HOME/bin目录下的jmeter.properties文件,添加运行jmeter-server的主机IP到remote-hosts
remote_hosts=10.0.0.158, 10.0.0.140,localhost
如果你不希望你的客户端也作为jmeter-server运行的话,把localhost从上面的配置中移除。
这里要注意:建议不用localhost而是使用实际的IP,否则容易报错。
实战阶段:
一、在客户端以gui模式启动jmeter,然后打开或者创建一个测试脚本
二、从gui模式启动所有的远程server,方法:运行-远程全部启动,看下图,也可以单独启动某一个jmeter-server
三、使用no-gui方式进行压力测试
jmeter -t "JMS Point-to-Point.jmx" -n -l testresult.csv -r
-t:从哪个jmx启动
-n:以no-gui的方式进行压力测试
-l:记录log
-r:启动远程server(在jmeter property中定义好的remote_hosts),公在non-gui模式下此参数才生效
至此,以经通过non-gui模式运行Jmeter分布式测试了
这里有一点小贴士:以分布式运行Jmeter,是在所有的server上运行同样的测试脚本,也就是说,如果你打算1s起100个线程,如果你用5台机器进行分布式测试,那么将脚本调试至1s起20个线程,否则则是1s起了500个线程,这样可能跟你的预期有所差别
【转】Jmeter分布式压力测试的更多相关文章
- 性能测试工具 jmeter 分布式压力测试实操
性能测试工具 jmeter 分布式压力测试实操 本文在Non-GUI Mode下进行,准备好三台有jdk环境,linux操作系统,同一局域网测试机器,运行两台slave,一台master机器,进行分布 ...
- jmeter分布式压力测试实践+登录为例
1.一张分布式压力的图解,如下 准备: 1.两台slave 2.一个master 3.待测目标地址 http://XXX 准备环境:linux环境,master如果可以最好有可视化电脑界面,便于jmx ...
- linux上实现jmeter分布式压力测试(转)
摘要:最近根据公司工作的需求,学习了一些压力测试的知识,目前,公司使用的是jmeter进行压力测试.下面就记录下近期的学习.我想将这次的博文分成三个部分:1.开始测试前的准备(测试环境的搭建)2.在一 ...
- Jmeter 分布式压力测试
JMeter中进行分布式测试 作为一个纯 JAVA 的GUI应用,JMeter对于CPU和内存的消耗还是很惊人的,所以当需要模拟数以千计的并发用户时,使用单台机器模拟所有的并发用户就有些力不从心, ...
- Jmeter分布式压力测试
有时候,一台机器无法支持很多个虚拟用户并发,这时就会使用分布式测试来实现这个功能,jmeter是有提供这个功能的.要实现分布式测试,得在主从(agent和controler)机器的jmeter安装目录 ...
- jmeter分布式压力测试配置操作
前提准备条件:1.主控机一台为master,ip地址:10.8.88.1772.负载机一台为slave, ip地址:10.8.88.1193.主控机和负载机都安装一样的JDK环境和jmeter版本.5 ...
- Jmeter性能测试-分布式压力测试
作为一个测试行业的菜鸟,由于投身于一个小公司,包揽所有的测试.刚开始的功能测试到接口测试,稳定性测试,兼容性测试等,一般由于是小项目所以对于性能有所忽略,也没怎么涉及,公司接了个大项目,后期对于性能上 ...
- JMeter接口压力测试课程入门到高级实战
章节一压力测试课程介绍 1.2018年亿级流量压测系列之Jmeter4.0课程介绍和效果演示 简介: 讲解课程安排,使用的Jmeter版本 讲课风格:涉及的组件,操作配置多,不会一次性讲解,会先讲部分 ...
- 使用JMeter做压力测试
使用JMeter做压力测试 1.下载Jmeter 地址:http://jmeter.apache.org/download_jmeter.cgi 2.启动jmeter 运行bin/jmeter.bat ...
随机推荐
- clscfg.bin: error while loading shared libraries: libcap.so.1:
RAC安装过程中,安装GI,运行root.sh脚本时报如下错误: # /u01/app//grid/root.sh Running Oracle 11g root script... The foll ...
- OGG_GoldenGate数据表定义方式DEFGEN(案例)
2014-03-09 Created By BaoXinjian
- uploadify上传图片
1.实现源代码 <%@ page language="java" import="java.util.*" pageEncoding="UTF- ...
- 使用用户自定义类型作为map的key
有时候我们想把用户自定义类型作为std::map的键值.方法一)最简单的方法就是实现该自定义类型的<操作符,代码如下:class Foo{public: Foo(int num_) ...
- Tomcat7 catalina.out 日志切割
安装步骤例如以下: 下载(最新版本号) # wget http://cronolog.org/download/cronolog-1.6.2.tar.gz 假设下载不了,直接网上查找,ftp ...
- 支持向量机(SVM):应用实例
SVM 应用实例(人脸识别): from __future__ import print_function from time import time import logging import m ...
- npm 模块化方式接入 font-awsome
https://segmentfault.com/q/1010000009795785/a-1020000009796355 $ npm install font-awesome 在main.js里添 ...
- Nodejs 使用 Chrome DevTools 调试 --inspect-brk
参考链接: https://cnodejs.org/topic/5a9661ff71327bb413bbff5b https://github.com/nswbmw/node-in-debugging ...
- sureface 屏幕残影问题官方解决方案 - 卸载显卡驱动
您进入桌面,左下角微软图标(单击右键),选择设备管理器,点开“显示适配器”前面的小三角,找到“Intel(r) hd gRAPHICS 520”, 单击右键卸载,卸载的时候不要勾选“删除此设备的驱动软 ...
- PCIE的DMA和PIO介绍
墨尘 百家号01-2422:14 在PCIE中有两种数据传输方式: DMA(Direct Memory Access),直接内存访问,在该模式下,数据传送不是由CPU负责处理,而是由一个特殊的处理器D ...