Getting Bamboo 1.x to listen to AJP 1.3 requests

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

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.

 

 

 

 

 

 

 

 

 

 

 

 

 

   

 

 

 

 

 

 

 

 

 

 

 

 

 

最終更新日 2016 年 11 月 29 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.