1. Uninstall the JDK that comes with centeros first rpm-qa|grepopenjdk The built-in openjdk found out 2. Delete rpm -e --nodeps 3. Query again rpm-qa|grepjdk 4. Create a folder in usr/local cd /usr/local mkdirjava 5. Put jdk1.8 into the file you just created cd /usr/local/java Upload with xftp and then decompress tar-zxvfjdk-8u181-linux-x64.tar.gz 6. Enter the folder you just unzipped cdjdk1.8.0_181/pwd# (This step records the path of jdk1.8, which will be used to configure the environment later) 7. Configure the environment vim/etc/profile Press i to insert the following path exportJAVA_HOME=/usr/local/java/jdk1.8.0_181exportCLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jarexportPATH=$PATH:$JAVA_HOME/bin After pressing Esc: wq exits source/etc/profile 8. Check if it is successful java-version Maven environment configuration 1. Create a maven folder under /usr/local cd /usr/localmkdirmaven 2. Enter the newly created folder Upload apache-maven-3.5.4-bin.zip 3. Unzip unzipapache-maven-3.5.4-bin.zip 4. Enter the unzipped folder cdapache-maven-3.5.4/pwd#(Record this path, it will be used in the configuration environment later) 5. Configure the environment vim/etc/profile Press i to insert the following exportMAVEN_HOME=/usr/local/maven/apache-maven-3.5.4exportPATH=$PATH:$MAVEN_HOME/bin After pressing Esc: wq save source/etc/profile 6. Check if it is successful Install git on centeros7 yuminstallgit Just go down y Check if it is successful git --version View the git command address which-agit Now the environment has been set up, and we can start to build Maven private server and gitlab. Gitlab setup 1. Create /etc/yum.repos.d/gitlab-ce.repo vim /etc/yum.repos.d/gitlab-ce.repo Then press the i key to insert the following content [gitlab-ce]name=GitlabCERepositorybaseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/gpgcheck=0enabled=1 2. sudoyummakecachesudoyuminstallgitlab-ce#(install the latest) or sudoyuminstallgitlab-ce-12.0.4#(specify the version number) 3. Configure external_url vim/etc/gitlab/gitlab.rb Modify the external_url address to: Check the local address: ifconfig Check the application running on the port number lsof -i:port number 4. gitlab-ctlreconfigure 5. gitlab-ctlrestart#Startgitlab-ctlstart|stop|status|restart#Other operations 6. Access http://localhost address:port number/ FAQ Make sure the port is not occupied and continue from 4. centeros7 builds maven private server Download nexus3.x: https://www.sonatype.com/download-oss-sonatype 1. Create a nexus file in /usr/local cd /usr/localmkdirnexuscdnexus 2. Upload the nexus compressed package just downloaded and decompress it tar-zxvfnexus-3.18.1-01-unix.tar.gz 3. cdnexus-3.18.1-01/bin/ls 4. Start ./nexusrun& 5. Open the remote access port firewall-cmd --zone=public --add-port=8081/tcp --permanentfirewall-cmd --reload Browser access 6. Set the startup to start automatically 1. Create a service vim /usr/lib/systemd/system/nexus.service 2. Press i to copy the following [Unit]Description=nexusservice[Service]Type=forkingLimitNOFILE=65536 #Warning handlingExecStart=/usr/local/nexus/nexus-3.7.1-02/bin/nexusstartExecReload=/usr/local/nexus/nexus-3.7.1-02/bin/nexusrestartExecStop=/usr/local/nexus/nexus-3.7.1-02/bin/nexusstopRestart=on-failure[Install]WantedBy=multi-user.target 3. Add the service to startup systemctlenablenexus.service 4. Reload the configuration file systemctldaemon-reload 7. Run as root (edit nexus.rc under nexus bin) cd /usr/local/nexus/nexus-3.18.1-01/bin/vimnexus.rc The content is changed to: run_as_user="root" 8. Modify the jdk version to be used when nexus3 starts cd /usr/local/nexus/nexus-3.18.1-01/bin/vimnexus Press i to add the following INSTALL4J_JAVA_HOME_OVERRIDE=/usr/local/java/jdk1.8.0_181 The java_home address can be output using echo $JAVA_HOME (assuming that /etc/profile is exported) 9. Modify the default port of nexus3 Files in nexus-xx etc/nexus-default.properties It has been built here. The following is to deploy to the private server and download from the private server for testing 1. Create a facade and upload it to a private server Create projects under /usr cd /usr/mkdirprojects Unzip the zip file to the project directory and enter the directory where pom.xml is located. mvndeploy -Dmaven.test.skip=true -U Uploaded successfully Here we need to allow anonymous users to access the server (allow anonymous users to access the server) Because the local Maven has no configured user You can also use the idea maven command depoly <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.netease</groupId> <artifactId>maven_test_demo</artifactId> <version>1.0.0-SNAPSHOT</version> <packaging>jar</packaging> <!-- Define constants --> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version> <nexus.host>192.168.20.143:8081</nexus.host> </properties> <!-- Define the deploy private server address and id (the id here should be consistent with the server tag in settings in Maven conf)--> <distributionManagement> <repository> <id>nexus-releases</id> <name>Nexus Private Release Repository</name> <url>http://${nexus.host}/repository/maven-releases</url> </repository> <snapshotRepository> <id>nexus-snapshots</id> <name>Nexus Private Snapshot Repository</name> <url>http://${nexus.host}/repository/maven-snapshots</url> </snapshotRepository> </distributionManagement> <!-- Definition compilation: https://blog.csdn.net/jiachunchun/article/details/90235498 --> <build> <finalName>${project.artifactId}-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> </plugins> </build> </project> The id defined in the servers in settings.xml is consistent Add the following image to settings <mirror><id>Central</id><url>http://repo1.maven.org/maven2</url><mirrorOf>central</mirrorOf></mirror> Finally, the settings file. At this point, the jar package can be published to the private server. See how to pull it. pom.xml of maven_demo_impl project <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.netease</groupId> <artifactId>maven_demo_impl</artifactId> <version>1.0-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.5.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <!-- Define constants --> <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-compiler-plugin.version>3.6.1</maven-compiler-plugin.version> <nexus.host>192.168.20.143:8081</nexus.host> <spring-cloud.version>Finchley.SR1</spring-cloud.version> </properties> <!-- Define warehouse address --> <repositories> <repository> <id>nexus-aliyun-repo</id> <name>nexus aliyun repo</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </repository> <!-- Private Server --> <repository> <id>maven-public</id> <name>maven-public</name> <url>http://192.168.20.143:8081/repository/maven-public/</url> </repository> </repositories> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <!-- Dependencies --> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependency> <dependency> <groupId>com.netease</groupId> <artifactId>maven_test_demo</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project> After the configuration is completed, it will automatically go to the private server to download the jar Jenkins build 1. Check the environment version java-version#If not available, please refer to jdk1.8 installation above mvn-v#If not available, please refer to maven installation above git--version#If not available, please refer to git installation above 2. Install Jenkins Add the Jenkins repository: sudowget -O /etc/yum.repos.d/jenkins.repohttp://jenkins-ci.org/redhat/jenkins.reposudorpm --importhttp://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key 3. Installation yuminstalljenkins 4. Start sudoservicejenkinsstart 5. Access http://ip:8080/#jenkenisThe default is 8080 First time password: vim /var/lib/jenkins/secrets/initialAdminPassword Click to install the recommended plugin (I don’t know what to install when I choose to install it later) Change the Jenkins port vim/etc/sysconfig/jenkins Change JENKINS_PORT="8080" ===> to the port you want to change that is not occupied JENKINS_PORT="8089" Restart the service servicejenkinsrestart Problem encountered: Reinstalled JDK, java address changed Starting jenkins reports an error: Job for jenkins.service failed because the control process exited with error code. See "systemctl status jenkins.service" and "journalctl -xe" for details. Follow the prompts and enter systemctl status jenkins.service Solution: 1> View the current Java environment variables echo$JAVA_HOME 2> Copy the Java environment variable address, edit the /etc/init.d/jenkins file, add the address to the specified location, and add the suffix /bin/java vim/etc/init.d/jenkins The key point is to configure Jenkins: 1. Configure global jdk maven git Click Manage Jenkins (System Management) -> Global Tool Configuration (Global Tool Configuration) 1. Maven configuration: configure settings.xml address 2. Configure the jdk address (can be obtained using 3. The git configuration address can be viewed using (which -a git) 4. Maven configuration address 2. Create a new task 3. Configure tasks 1. Configure source code management. The following version is the version number of gitlab Repository URL: the name of the repository to be accessed Credentials: the access account password or ssh certificate Branch Specifier (blank for 'any'): the branch to be accessed, multiple source code repositories can be used Browser: select the source code repository Server URL: source code repository URL Version: source code repository server version number 2. Configure the build cleancompilepackageinstalldeploy-Dmaven.test.skip=true-U#Publish the jar Then apply, the configuration is complete! 3. In my view -> find the newly created project --> click build now Click on the build just now in the build history as shown below: #1: is the build id, console output: you can see the specific output The following is the input log to see the master branch of the specified project that was previously pulled Started by user root Running as SYSTEM Building in workspace /var/lib/jenkins/workspace/first using credential fad2813a-c894-4386-ae16-11d6e6d349d4 Cloning the remote Git repository Cloning repository http://192.168.20.137:9029/root/wx-ssm.git > /usr/local/git/bin/git init /var/lib/jenkins/workspace/first # timeout=10 Fetching upstream changes from http://192.168.20.137:9029/root/wx-ssm.git > /usr/local/git/bin/git --version # timeout=10 using GIT_ASKPASS to set credentials > /usr/local/git/bin/git fetch --tags --progress http://192.168.20.137:9029/root/wx-ssm.git +refs/heads/*:refs/remotes/origin/* > /usr/local/git/bin/git config remote.origin.url http://192.168.20.137:9029/root/wx-ssm.git # timeout=10 > /usr/local/git/bin/git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10 > /usr/local/git/bin/git config remote.origin.url http://192.168.20.137:9029/root/wx-ssm.git # timeout=10 Fetching upstream changes from http://192.168.20.137:9029/root/wx-ssm.git using GIT_ASKPASS to set credentials > /usr/local/git/bin/git fetch --tags --progress http://192.168.20.137:9029/root/wx-ssm.git +refs/heads/*:refs/remotes/origin/* > /usr/local/git/bin/git rev-parse refs/remotes/origin/master^{commit} # timeout=10 > /usr/local/git/bin/git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10 Checking out Revision 47d13c3ca0bc12fc0465c3e4c582b2c542276eb6 (refs/remotes/origin/master) > /usr/local/git/bin/git config core.sparsecheckout # timeout=10 > /usr/local/git/bin/git checkout -f 47d13c3ca0bc12fc0465c3e4c582b2c542276eb6 Commit message: "Update pom.xml" First time build. Skipping changelog. [first] $ /project/java/maven/apache-maven-3.6.1/bin/mvn -s /project/java/maven/apache-maven-3.6.1/conf/settings.xml -gs /project/java/maven/apache-maven-3.6.1/conf/settings.xml clean package [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for com.guojin:gjmetal-wx-ssm:jar:1.0.0.1-SNAPSHOT [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.httpcomponents:httpclient:jar -> version (?) vs 4.5.6 @ line 155, column 21 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] [INFO] [INFO] ---------------------< com.guojin:gjmetal-wx-ssm >---------------------- [INFO] Building gjmetal-wx-ssm 1.0.0.1-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ gjmetal-wx-ssm --- [INFO] [INFO] --- jacoco-maven-plugin:0.7.9:prepare-agent (pre-test) @ gjmetal-wx-ssm --- [INFO] argLine set to -javaagent:/var/lib/jenkins/.m2/repository/org/jacoco/org.jacoco.agent/0.7.9/org.jacoco.agent-0.7.9-runtime.jar=destfile=/var/lib/jenkins/workspace/first/target/jacoco.exec,includes=com.gjmetal.* [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ gjmetal-wx-ssm --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ gjmetal-wx-ssm --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 27 source files to /var/lib/jenkins/workspace/first/target/classes [INFO] ------------------------------------------------------------- [ERROR] COMPILATION ERROR : [INFO] ------------------------------------------------------------- [ERROR] /var/lib/jenkins/workspace/first/src/main/java/com/gjmetal/Swagger2.java:[4,40] package org.fuelteam.springboot.swagger2 does not exist [ERROR] /var/lib/jenkins/workspace/first/src/main/java/com/gjmetal/Swagger2.java:[21,2] cannot find symbol symbol: class EnableSwagger2 [INFO] 2 errors [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 9.183 s [INFO] Finished at: 2019-08-23T17:05:09+08:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project gjmetal-wx-ssm: Compilation failure: Compilation failure: [ERROR] /var/lib/jenkins/workspace/first/src/main/java/com/gjmetal/Swagger2.java:[4,40] package org.fuelteam.springboot.swagger2 does not exist [ERROR] /var/lib/jenkins/workspace/first/src/main/java/com/gjmetal/Swagger2.java:[21,2] symbol not found [ERROR] symbol: class EnableSwagger2 [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException Build step 'Invoke top-level Maven targets' marked build as failure Finished: FAILURE The error above is a project problem. You can see that the project has been pulled. So we must ensure the correctness of the project. The following are two correct project running examples to automatically send jar to private server and start jar project after setting up gitlab nexus jenkins Background: gitlab nexus jenkins have all been completed 1. Download the project from gitlab and publish the jar to the private server Reconfigure the gitlab address: Configure Maven command: cleancompilepackageinstalldeploy -Dmaven.test.skip=true -U Click build now and see the console output as follows Started by user root Running as SYSTEM Building in workspace /var/lib/jenkins/workspace/maven_home using credential fad2813a-c894-4386-ae16-11d6e6d349d4 > /usr/local/git/bin/git rev-parse --is-inside-work-tree # timeout=10 Fetching changes from the remote Git repository > /usr/local/git/bin/git config remote.origin.url http://192.168.20.143:8083/root/maven_demo.git # timeout=10 Fetching upstream changes from http://192.168.20.143:8083/root/maven_demo.git > /usr/local/git/bin/git --version # timeout=10 using GIT_ASKPASS to set credentials > /usr/local/git/bin/git fetch --tags --progress http://192.168.20.143:8083/root/maven_demo.git +refs/heads/*:refs/remotes/origin/* > /usr/local/git/bin/git rev-parse refs/remotes/origin/master^{commit} # timeout=10 > /usr/local/git/bin/git rev-parse refs/remotes/origin/origin/master^{commit} # timeout=10 Checking out Revision a26adc740d331eabe5b0fb2a46b372dbf6673d2c (refs/remotes/origin/master) > /usr/local/git/bin/git config core.sparsecheckout # timeout=10 > /usr/local/git/bin/git checkout -f a26adc740d331eabe5b0fb2a46b372dbf6673d2c Commit message: "Update pom.xml" > /usr/local/git/bin/git rev-list --no-walk a26adc740d331eabe5b0fb2a46b372dbf6673d2c # timeout=10 [maven_home] $ /project/java/maven/apache-maven-3.6.1/bin/mvn -s /project/java/maven/apache-maven-3.6.1/conf/settings.xml -gs /project/java/maven/apache-maven-3.6.1/conf/settings.xml clean compile package install deploy -Dmaven.test.skip=true -U [INFO] Scanning for projects... [INFO] [INFO] --------------------< com.netease:maven_test_demo >--------------------- [INFO] Building maven_test_demo 1.0.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ maven_test_demo --- [INFO] Deleting /var/lib/jenkins/workspace/maven_home/target [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ maven_test_demo --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/maven_home/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_test_demo --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/maven_home/target/classes [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ maven_test_demo --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/maven_home/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_test_demo --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ maven_test_demo --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ maven_test_demo --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ maven_test_demo --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ maven_test_demo --- [INFO] Building jar: /var/lib/jenkins/workspace/maven_home/target/maven_test_demo-1.0.0-SNAPSHOT.jar [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ maven_test_demo --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/maven_home/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_test_demo --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ maven_test_demo --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ maven_test_demo --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ maven_test_demo --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ maven_test_demo --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ maven_test_demo --- [INFO] Installing /var/lib/jenkins/workspace/maven_home/target/maven_test_demo-1.0.0-SNAPSHOT.jar to /var/lib/jenkins/.m2/repository/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-SNAPSHOT.jar [INFO] Installing /var/lib/jenkins/workspace/maven_home/pom.xml to /var/lib/jenkins/.m2/repository/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-SNAPSHOT.pom [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ maven_test_demo --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/maven_home/src/main/resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_test_demo --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:2.6:testResources (default-testResources) @ maven_test_demo --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ maven_test_demo --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.12.4:test (default-test) @ maven_test_demo --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ maven_test_demo --- [INFO] [INFO] --- maven-install-plugin:2.4:install (default-install) @ maven_test_demo --- [INFO] Installing /var/lib/jenkins/workspace/maven_home/target/maven_test_demo-1.0.0-SNAPSHOT.jar to /var/lib/jenkins/.m2/repository/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-SNAPSHOT.jar [INFO] Installing /var/lib/jenkins/workspace/maven_home/pom.xml to /var/lib/jenkins/.m2/repository/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-SNAPSHOT.pom [INFO] [INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ maven_test_demo --- Downloading from nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml Progress (1): 776 B Downloaded from nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml (776 B at 6.5 kB/s) Uploading to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.jar Progress (1): 2.6 kB Uploaded to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.jar (2.6 kB at 13 kB/s) Uploading to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.pom Progress (1): 2.1 kB Uploaded to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.pom (2.1 kB at 19 kB/s) Downloading from nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/maven-metadata.xml Progress (1): 286 B Downloaded from nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/maven-metadata.xml (286 B at 11 kB/s) Uploading to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml Progress (1): 776 B Uploaded to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml (776 B at 4.6 kB/s) Uploading to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/maven-metadata.xml Progress (1): 286 B Uploaded to nexus-snapshots: http://192.168.20.143:8081/repository/maven-snapshots/com/netease/maven_test_demo/maven-metadata.xml (286 B at 2.5 kB/s) [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3.640 s [INFO] Finished at: 2019-08-27T14:24:47+08:00 [INFO] ------------------------------------------------------------------------ Finished: SUCCESS 2. Publish the running jar to the specified machine Make sure Jenkins has the Publish Over SSH plugin installed. Manage Jenkins -> Manage Plugins -> Search for ssh Then configure ssh After configuration, click Test Configuration and success will appear. After the configuration is completed, the new Item (project) is just an additional build (note that the previous configuration needs to be changed: #The last script executed is placed in /projects/scripts mkdir scripts vim run.sh #Press i to copy the following content Project_name=$1 Port_no=$2 #echo $Project_name #echo $Port_no ./etc/profile # Enter the project cd /projects/$Project_name # Find the original process and kill it pid=$(ps -ef | grep java | grep $Project_name | awk -F '[ ]+' '{print $2}') kill -9 $pid #Start jar nohup java -jar $Project_name-1.0-SNAPSHOT.jar --server.port=$Port_no -server -Xmx1000m -Xms1000m -Xmn700m -XX:+UseParallelGC & echo "starting service..." sleep 20 #Judge whether the startup is successful based on whether there is a current application after restart pid=$(ps -ef | grep java| grep $Project_name|awk -F '[ ]+' '{print $2}') #echo $pid if [ -z $pid ];then echo "Startup failed" exit 1 else echo $Project_name : $pid "SUCCESS" fi Now build immediately to see the console output Started by user root Running as SYSTEM Building in workspace /var/lib/jenkins/workspace/maven_demo_impl using credential fad2813a-c894-4386-ae16-11d6e6d349d4 > /usr/local/git/bin/git rev-parse --is-inside-work-tree # timeout=10 Fetching changes from the remote Git repository > /usr/local/git/bin/git config remote.origin.url http://192.168.20.143:8083/root/maven_demo_impl.git # timeout=10 Fetching upstream changes from http://192.168.20.143:8083/root/maven_demo_impl.git > /usr/local/git/bin/git --version # timeout=10 using GIT_ASKPASS to set credentials > /usr/local/git/bin/git fetch --tags --progress http://192.168.20.143:8083/root/maven_demo_impl.git +refs/heads/*:refs/remotes/origin/* Seen branch in repository origin/master Seen 1 remote branch > /usr/local/git/bin/git show-ref --tags -d # timeout=10 Checking out Revision bf0f9bd981c053359167a0e46e517f4f936c8c98 (origin/master) > /usr/local/git/bin/git config core.sparsecheckout # timeout=10 > /usr/local/git/bin/git checkout -f bf0f9bd981c053359167a0e46e517f4f936c8c98 Commit message: "Update TestDemoImpl.java" > /usr/local/git/bin/git rev-list --no-walk bf0f9bd981c053359167a0e46e517f4f936c8c98 # timeout=10 [maven_demo_impl] $ /project/java/maven/apache-maven-3.6.1/bin/mvn -s /project/java/maven/apache-maven-3.6.1/conf/settings.xml -gs /project/java/maven/apache-maven-3.6.1/conf/settings.xml clean compile package -Dmaven.test.skip=true -U [INFO] Scanning for projects... [INFO] [INFO] --------------------< com.netease:maven_demo_impl >--------------------- [INFO] Building maven_demo_impl 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- Downloading from nexus-aliyun-repo: http://maven.aliyun.com/nexus/content/groups/public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml Downloading from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml Progress (1): 776 B Downloaded from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven-metadata.xml (776 B at 4.2 kB/s) Downloading from nexus-aliyun-repo: http://maven.aliyun.com/nexus/content/groups/public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.pom Downloading from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.pom Progress (1): 2.1 kB Downloaded from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.pom (2.1 kB at 47 kB/s) Downloading from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.jar Progress (1): 2.6 kB Downloaded from maven-public: http://192.168.20.143:8081/repository/maven-public/com/netease/maven_test_demo/1.0.0-SNAPSHOT/maven_test_demo-1.0.0-20190827.062446-3.jar (2.6 kB at 67 kB/s) [INFO] [INFO] --- maven-clean-plugin:3.0.0:clean (default-clean) @ maven_demo_impl --- [INFO] Deleting /var/lib/jenkins/workspace/maven_demo_impl/target [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ maven_demo_impl --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] Copying 0 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_demo_impl --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 2 source files to /var/lib/jenkins/workspace/maven_demo_impl/target/classes [INFO] [INFO] --- maven-resources-plugin:3.0.2:resources (default-resources) @ maven_demo_impl --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] Copying 0 resource [INFO] [INFO] --- maven-compiler-plugin:3.6.1:compile (default-compile) @ maven_demo_impl --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- maven-resources-plugin:3.0.2:testResources (default-testResources) @ maven_demo_impl --- [INFO] Not copying test resources [INFO] [INFO] --- maven-compiler-plugin:3.6.1:testCompile (default-testCompile) @ maven_demo_impl --- [INFO] Not compiling test sources [INFO] [INFO] --- maven-surefire-plugin:2.21.0:test (default-test) @ maven_demo_impl --- [INFO] Tests are skipped. [INFO] [INFO] --- maven-jar-plugin:3.0.2:jar (default-jar) @ maven_demo_impl --- [INFO] Building jar: /var/lib/jenkins/workspace/maven_demo_impl/target/maven_demo_impl-1.0-SNAPSHOT.jar [INFO] [INFO] --- spring-boot-maven-plugin:2.0.5.RELEASE:repackage (default) @maven_demo_impl --- [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 11.163 s [INFO] Finished at: 2019-08-27T15:00:40+08:00 [INFO] ------------------------------------------------------------------------ SSH: Connecting from host [localhost.localdomain] SSH: Connecting with configuration [192.168.20.143] ... SSH: EXEC: STDOUT/STDERR from command [sh /projects/scripts/run.sh maven_demo_impl 10010] ... starting service... nohup: append output to "nohup.out" maven_demo_impl : 4406 SUCCESS SSH: EXEC: completed after 20,262 ms SSH: Disconnecting configuration [192.168.20.143] ... SSH: Transferred 1 file(s) Finished: SUCCESS You can see that ssh already has the jar and is running. You may also be interested in:
|
<<: Analysis of implicit bug in concurrent replication of MySQL 5.7
>>: ThingJS particle effects to achieve rain and snow effects with one click
Using Technology itext.jar: Convert byte file inp...
1. Introduction MySQL comes with a replication so...
Table of contents 1. Define object methods 2. Def...
Table of contents Project Creation Project Struct...
Table of contents Common functions of linux drive...
1. Effect display An astronaut watch face written...
1. Still use PHP script to execute. Command line ...
First create a specific project directory for you...
Summary of common functions of PostgreSQL regular...
Installation environment: CentOS7 64-bit MINI ver...
This article shares with you how to use Navicat t...
Table of contents Understand the core concept of ...
Without further ado, let’s run the screenshot dir...
1. Install mutt sudo apt-get install mutt 2. Inst...
<br />Use of line break tag<br>The lin...