How to Run Confluence on Two Different Ports
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
説明
We want to run Confluence on two different ports simultaneously. This article explains how to create such a setup and is applicable to any webapp running behind apache Tomcat.
Adding multiple ports can degrade performance. Test these changes in a testing environment before applying to production.
ソリューション
- Open the <Confluence_Installation_Directory>/conf/server.xml file
Note the <connector> tag and copy this section
At the end of the existing connector tag, paste the copy from step two
Change the port value in this new connector section to the additional port to be used. It will be something like the below:
<Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxThreads="48" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11NioProtocol"/> <Connector port="8453" connectionTimeout="20000" redirectPort="8443" maxThreads="48" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11NioProtocol"/>
- ファイルを保存して Confluence を再起動します。
We will now be able to connect using either port 8090 OR 8453 (as per the above example)