Created
October 3, 2011 00:19
-
-
Save phpleo/1258167 to your computer and use it in GitHub Desktop.
Jenkins CI en ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fuente: https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+Ubuntu | |
| # Referencias: | |
| # - https://gist.github.com/819043 | |
| $ wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add - | |
| $ sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list' | |
| $ sudo aptitude update | |
| $ sudo aptitude install jenkins | |
| $ /etc/init.d/jenkins status | |
| The jenkins init script can only be run as root | |
| # Para probar ingresar a: | |
| # http://localhost:8080/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment