By
wz2cool
更新日期:
前言
jmeter 是一个 apache 组织的免费测试工具,我们可以比较简单的做一些测试, 因为自己要做 TiDB 的接口性能测试,所以需要把 jmeter 安装到 Centos7 上。
jmeter 官网
安装
安装 Java 8
为了保险我没用用 openJDK 我安装的是 Oracle JDK 8 的版本, 大家可以去 Oracle 官网下载 rpm 安装包。
1 2
| $ yum localinstall jdk-8u201-linux-x64.rpm $ java -version
|
安装 jmeter
1 2 3 4
| $ wget https: $ tar -xvf apache-jmeter-3.3.tgz $ mv apache-jmeter-3.3.tgz jmeter $ mv jmeter /usr/local
|
- 添加环境变量
添加 export PATH=/usr/local/jmeter/bin/:$PATH
到 /etc/profile 末尾。
1 2
| $ vi /etc/profile $ source /etc/profile
|
1 2 3 4 5 6 7 8
| $ jmeter -v _ ____ _ ____ _ _ _____ _ __ __ _____ _____ _____ ____ / \ | _ \ / \ / ___| | | | ____| | | \/ | ____|_ _| ____| _ \ / _ \ | |_) / _ \| | | |_| | _| _ | | |\/| | _| | | | _| | |_) | / ___ \| __/ ___ \ |___| _ | |___ | |_| | | | | |___ | | | |___| _ < /_/ \_\_| /_/ \_\____|_| |_|_____| \___/|_| |_|_____| |_| |_____|_| \_\ 5.0 r1840935
Copyright (c) 1999-2018 The Apache Software Foundation
|