f8d8be4571
Jenkins is an award-winning application that monitors executions of repeated jobs, such as building a software project or jobs run by cron. Among those things, current Jenkins focuses on the following two jobs: 1. Building/testing software projects continuously, just like CruiseControl or DamageControl. In a nutshell, Jenkins provides an easy-to-use so-called continuous integration system, making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. The automated, continuous build increases the productivity. 2. Monitoring executions of externally-run jobs, such as cron jobs and procmail jobs, even those that are run on a remote machine. For example, with cron, all you receive is regular e-mails that capture the output, and it is up to you to look at them diligently and notice when it broke. Jenkins keeps those outputs and makes it easy for you to notice when something is wrong. This is Long-Term Support Release. Tested on NetBSD/i386 5.99.58 with apache-tomcat7 and openjdk7.
31 lines
1 KiB
Text
31 lines
1 KiB
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.1.1.1 2011/12/08 14:09:25 ryoon Exp $
|
|
|
|
To use jenkins with apache tomcat, you will need to perform the following
|
|
steps. Of cource you can run jenkins with builtin winstone web server.
|
|
|
|
1. Install apache tomcat server, for example apache-tomcat7
|
|
|
|
# cd www/apache-tomcat7
|
|
# make install
|
|
|
|
2. Set jenkins location to apache tomcat
|
|
$ sudo vi ${PREFIX}/share/tomcat/conf/server.xml
|
|
Add
|
|
<Context path="/jenkins" docBase="${PREFIX}/share/jenkins"
|
|
debug="0" reloadable="true">
|
|
</Context>
|
|
in <Host> tag
|
|
|
|
3. Set URI Encoding as UTF-8
|
|
$ vi ${PREFIX}/share/tomcat/conf/server.xml
|
|
You should have
|
|
URIEncoding="UTF-8"
|
|
in <Connector/> tag. For example, you should have the following
|
|
lines.
|
|
<Connector port="8080" protocol="HTTP/1.1"
|
|
connectionTimeout="20000"
|
|
redirectPort="8443" URIEncoding="UTF-8"/>
|
|
|
|
4. Start apache tomcat and access http://localhost:8080/jenkins/
|
|
===========================================================================
|