Jenkins インストールログ

Jenkins

http://jenkins-ci.org/sites/default/files/jenkins_logo.png

Homebrewでインストールできるらしい。あら簡単。

$ brew install jenkins

==> Downloading http://mirrors.jenkins-ci.org/war/1.486/jenkins.war
######################################################################## 100.0%
==> Caveats
If this is your first install, automatically load on login with:
mkdir -p ~/Library/LaunchAgents
ln -nfs /usr/local/Cellar/jenkins/1.486/homebrew.mxcl.jenkins.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist

If this is an upgrade and you already have the homebrew.mxcl.jenkins.plist loaded:
launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist

Or start it manually:
java -jar /usr/local/Cellar/jenkins/1.486/libexec/jenkins.war
==> Summary
/usr/local/Cellar/jenkins/1.486: 3 files, 47M, built in 2.6 minutes

起動

$ java -jar /usr/local/Cellar/jenkins/1.486/libexec/jenkins.war

Running from: /usr/local/Cellar/jenkins/1.486/libexec/jenkins.war
webroot: $user.home/.jenkins
2012/10/28 17:19:28 winstone.Logger logInternal
???: Beginning extraction from war file
Jenkins home directory: /Users/kiyotune/.jenkins found at: $user.home/.jenkins
2012/10/28 17:19:33 winstone.Logger logInternal
???: HTTP Listener started: port=8080
2012/10/28 17:19:33 winstone.Logger logInternal
???: AJP13 Listener started: port=8009
2012/10/28 17:19:33 winstone.Logger logInternal
???: Winstone Servlet Engine v0.9.10 running: controlPort=disabled
2012/10/28 17:19:34 jenkins.InitReactorRunner$1 onAttained
???: Started initialization
2012/10/28 17:19:36 jenkins.InitReactorRunner$1 onAttained
???: Listed all plugins
2012/10/28 17:19:36 jenkins.InitReactorRunner$1 onAttained
???: Prepared all plugins
2012/10/28 17:19:36 jenkins.InitReactorRunner$1 onAttained
???: Started all plugins
2012/10/28 17:19:36 jenkins.InitReactorRunner$1 onAttained
???: Augmented all extensions
2012/10/28 17:19:36 jenkins.InitReactorRunner$1 onAttained
???: Loaded all jobs
2012/10/28 17:19:40 org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration run
???: Trying to register BouncyCastle as a JCE provider
2012/10/28 17:19:41 org.apache.sshd.common.util.SecurityUtils$BouncyCastleRegistration run
???: Registration succeeded
2012/10/28 17:19:41 org.jenkinsci.main.modules.sshd.SSHD start
???: Started SSHD at port 64242
2012/10/28 17:19:41 jenkins.InitReactorRunner$1 onAttained
???: Completed initialization
2012/10/28 17:19:41 hudson.TcpSlaveAgentListener <init>
???: JNLP slave agent listener started on TCP port 64243
2012/10/28 17:19:41 hudson.WebAppMain$2 run
???: Jenkins is fully up and running

http:://localhost:8080 でブラウザで見てみる。

f:id:kiyotune:20121028172312p:plain

終了。 Ctrl+c でコマンドを中断して終了。