Jenkins deployment and installation, easy to get in three steps

Jenkins deployment and installation, easy to get in three steps

1. Install JDK (refer to the article https://blog.csdn.net/Lemonhlj/article/details/111825207 );

2. Download the installation package http://mirrors.jenkins.io/war-stable/latest/jenkins.war

wget http://mirrors.jenkins.io/war-stable/latest/jenkins.war

3. Start Jenkins

nohup java -jar /isTester/jenkins.war --httpPort=8080 &

Note: As above, copy directly and change the path of the war package (assuming that your installation package is placed in the isTester directory, if other directories, change the path yourself)

4. Enter http://ip:8080 in the browser

Note: ip is your server ip address (if it is a virtual machine, use the internal network IP ; if it is a cloud server, use the external network IP )

Enter jenkins homepage

For example, http://49.235.98.53:8080 (You can also configure the domain name for direct access, such as http://jenkins.istester.com/ )

Guess you like

Origin blog.csdn.net/Lemonhlj/article/details/112138687