Getting Bamboo 1.x to listen to AJP 1.3 requests
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
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.
1
2
3
4
5
6
7
8
9
10
11
<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.
Was this helpful?