*Product: *
Environment
| Operating System | |
|---|---|
| Affect Version/s | 1.2.4 |
| JVM | |
| Database | MySQL 5.x |
| Application Server | Standalone |
Error Message
Symptom
Diagnostics/Test
Root Cause
Solution
| This only applies for Bamboo versions 1.2.4 and below, running standalone jetty 5.x server |
This should be easy enough, if you edited the ../<Bamboo-Install>/webapp/WEB-INF/classes/jetty.xml file in Bamboo - following this jetty guide add the following to the jetty.xml file.
<Call name="addListener"> <Arg> <New class="org.mortbay.http.ajp.AJP13Listener"> <Set name="port">8009</Set> <Set name="minThreads">5</Set> <Set name="maxThreads">50</Set> <Set name="maxIdleTimeMs">30000</Set> <Set name="maxReadTimeMs">60000</Set> </New> </Arg> </Call>
Finally, you need to instruct Bamboo start with the jetty.xml file by following this Bamboo guide.
