tohokuaikiのチラシの裏

技術的ネタとか。

JIRAのインストール

評価版なら何もせんでも終わってしまった。簡単。

一か所、ApacheProxyを通してるので、Dashboardlocalhostにつなぎに行ってしまい、
Dashboard Diagnostics: Mismatched URL Port」
と言われてしまった。

http://confluence.atlassian.jp/display/JIRA/Integrating+JIRA+with+Apache
にある通り

<Server port="8005" shutdown="SHUTDOWN">

  <Service name="Catalina">

    <Connector port="8080"
      maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
      enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true"
      proxyName="mycompany.com" proxyPort="80" />

と proxyName="mycompany.com" proxyPort="80"を適当に設置したら直った。|