This document describes how to install and use Jenkins on Ubuntu.
1) download and install
Download jenkins_1.461_all.deb
$ Sudo dpkg-I jenkins_1.461_all.deb
Prompt to install daemon
Sudo apt-get install daemon
2) Simple startup
After installation, jenkins. war is available in/usr/share/jenkins /.
Cd/usr/share/jenkins/
Java-jar jenkins. war -- httpPort = 8000
Run the specified port
3) Configure to start the system
The installer generates the following file/etc/init. d/jenkins. You can use the system service command to start or stop
Sudo service jenkins stop
Sudo service jenkins start
4) how to change the port
Vi/etc/default/jenkins
Find the following line to change
# Port for HTTP connector (default 8080; disable with-1)
HTTP_PORT = 8000
5) build a project
Go to http: // 10.15.5.218: 8000 to build the project
Copy hello/main. c to the relevant workspace directory (/var/lib/jenkins/workspace), and you may be able to observe the build process.
The following example:
I set to execute gcc hello/main. c every 3 hours.