CentOS 7 にインストールした Confluence にアクセスできない
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
問題
After following the instructions for Installing Confluence on Linux when using CentOS 7, you may find that Confluence is not accessible, and there are no errors in the logs to suggest why Confluence is not accessible.
診断
- Is the Confluence service listening on IPv4? Running
netstat -a
will determine what protocol Confluence is listening on, as well as what port it's listening on. - Is a system firewall, such as
firewalld
oriptables
running?- If so, try stopping those firewalls temporarily to see if they're blocking connection to Confluence
- Can external machines
telnet
to Confluence on the connection port (8090 by default)?
Cause #1
Confluence may not be listening on an IPv4 address, and instead will be listening on an IPv6 address.
ソリューション #1
Add
-Djava.net.preferIPv4Stack=true
to your JVM Parameters. See Configuring System Properties; and restart Confluence for the changes to take effect
Cause #2
Connections to Confluence may be blocked by firewalld
, which is included in CentOS 7 by default.
ソリューション #2
- Configure your firewall software to permit connections to Confluence on the port(s) defined in
server.xml
. Consult your firewall documentation for details.