Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 702 Bytes

README.md

File metadata and controls

23 lines (22 loc) · 702 Bytes

Instruction to set up a performance test environment

Set up a centos 8 server

$ sudo yum -y update
$ sudo yum install -y git maven java
$ sudo systemctl enable firewalld
$ sudo systemctl start firewalld
$ sudo firewall-cmd --permanent --zone=public --add-port=8080/tcp
$ sudo firewall-cmd --reload

clone the jpetstore application

$ mkdir ${HOME_DIR}/Documents/application
$ cd ${HOME_DIR}/Documents/application/
$ git clone https://github.com/kazuki43zoo/mybatis-spring-boot-jpetstore.git

Build jar file

$ cd mybatis-spring-boot-jpetstore.git
$ ./mvnw clean package -DskipTests=true
$ java -jar target/mybatis-spring-boot-jpetstore-2.0.0-SNAPSHOT.jar