Getting Bamboo 1.x to listen to AJP 1.3 requests

Still need help?

The Atlassian Community is here for you.

Ask the community

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.

 

 

 

 

 

 

 

 

 

 

 

 

 

   

 

 

 

 

 

 

 

 

 

 

 

 

 

Last modified on Nov 29, 2016

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.