How to run JIRA on a specific IP

お困りですか?

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

コミュニティに質問

 

このページの内容はサポート対象外のプラットフォームに関連しています。したがって、アトラシアン サポートではこのページの記載内容のサポートの提供は保証されません。この資料は情報提供のみを目的として提供されています。内容はお客様自身の責任でご利用ください。

問題

JIRA needs to run on a specific IP address.

ソリューション

  • Edit the server.xml used by Tomcat which runs JIRA
  • Find the connector you are currently using. The default one looks like:

    Stock connector
    <Connector acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" enableLookups="false" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" port="8080" protocol="HTTP/1.1" redirectPort="8443" useBodyEncodingForURI="true"/>
    
  • Add the address property like so:

    Stock connector
    <Connector address="127.0.0.1" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" enableLookups="false" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" port="8080" protocol="HTTP/1.1" redirectPort="8443" useBodyEncodingForURI="true"/>
    

    (info) Based on information at: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html#Standard_Implementation and http://tomcat.apache.org/tomcat-6.0-doc/config/http.html#Standard_Implementation

最終更新日 2018 年 8 月 20 日

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

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