Record AgileTC once, build the platform without using docker

AgileTC, platform construction

1. First download the source code project to the local or server

Project address: https://github.com/didi/AgileTC

2. Project construction

1. Create data using mysql, pagoda (my server) to install mysql service
2. Create a database using mysql tool, or command to create a case_manager library (command: CREATE DATABASE case_manager
3. After the library is built, go to the directory AgileTC-master/case- server/sql, find the sql file, create and execute it to generate the following table
insert image description here

4. Modify the configuration, the configuration of vim /case-server/src/main/resources/application-dev.properties
insert image description here

5. Enter the case-server to install the xmind jar package
Mvn install:install-file-Dfile=org.xmind.core_3.5.2.201505201101.jar-DgroupId=com.xmind -DartifactId=sdk-Java -Dversion=201505201101 -Dpackaging= jar

6. Run the project: Enter the case-server directory to start
using mvn spring-boot:run #This startup will stop if the xshell project is closed

7. Running in the background
Just use nohup to start, nohup mvn spring-boot:run &
after starting, this means that it has been running in the background, and insert image description hereyou can press Enter again after the end of control+c

Note: If you want to stop, use jobs -l to view the projects running in the background, and use kill-9 pid number to close according to the pid

Supongo que te gusta

Origin blog.csdn.net/qq_34004131/article/details/118603907
Recomendado
Clasificación