Last active
August 29, 2015 14:05
-
-
Save aldibier/80aad137c8afd3ff3839 to your computer and use it in GitHub Desktop.
This file contains 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
Para instalar Jenkins es tan sencillo como copiar el archivo .war descargado desde http://jenkins-ci.org/ a la carpeta weapps de Tomcat | |
$ wget http://mirrors.jenkins-ci.org/war/latest/jenkins.war | |
$ sudo mv jenkins.war /var/lib/tomcat7/webapps/ | |
Ingrese a la administración web de tomcat e inicie el servicio. | |
-- Importante -- | |
Si al iniciar el servicio dice que fallò y catalina.out le arroja un error que dice algo como lo siguiente: | |
GRAVE: Falló en arranque del Contexto [/jenkins] debido a errores previos | |
Jenkins home directory: /usr/share/tomcat7/.jenkins found at: $user.home/.jenkins | |
hudson.util.BootFailure publish | |
GRAVE: Failed to initialize Jenkins | |
hudson.util.NoHomeDir | |
La razón es que no pudo crear el directorio .jenkins por lo cual lo debe crear manualmente. | |
$ sudo mkdir /usr/share/tomcat7/.jenkins | |
$ sudo chown -R tomcat7:tomcat7 /usr/share/tomcat7/.jenkins | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment