-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathMakefile
18 lines (15 loc) · 868 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
install-jmeter:
wget --quiet https://downloads.apache.org//jmeter/binaries/apache-jmeter-5.6.3.zip
unzip -qq apache-jmeter-5.6.3.zip
./apache-jmeter-5.6.3/bin/jmeter -v
start-mirror-server:
echo "Fix bad Jmeter lib names."
cp ./apache-jmeter-5.6.3/lib/slf4j-api-1.7.36.jar ./apache-jmeter-5.6.3/lib/slf4j-api-1.7.25.jar
cp ./apache-jmeter-5.6.3/lib/log4j-slf4j-impl-2.22.1.jar ./apache-jmeter-5.6.3/lib/log4j-slf4j-impl-2.11.0.jar
cp ./apache-jmeter-5.6.3/lib/log4j-api-2.22.1.jar ./apache-jmeter-5.6.3/lib/log4j-api-2.11.1.jar
cp ./apache-jmeter-5.6.3/lib/log4j-core-2.22.1.jar ./apache-jmeter-5.6.3/lib/log4j-core-2.11.1.jar
cp ./apache-jmeter-5.6.3/lib/log4j-1.2-api-2.22.1.jar ./apache-jmeter-5.6.3/lib/log4j-1.2-api-2.11.1.jar
echo "Starting the mirror server on port 8500."
./apache-jmeter-5.6.3/bin/mirror-server --port 8500 &
test:
sh ./test.sh