New Install of Confluence Appears to Succeed, but is not Accessible
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
症状
User is installing Confluence for the first time. The install appears to function correctly, but at the end of the process user is prompted to enter a user name and password without having set up an admin account. User is effectively locked out of their system
原因
The confluence.home variable is set multiple times in <confluence_install>/confluence/WEB-INF/classes/confluence-init.properties. The most often cause of this is deleting more than one of the "#" commenting out the value for confluence.home.
ソリューション
- Make sure the value of confluence.home is set once and ONLY once
We recommend that the value is set on the last line as shown below
#This file allows you to set the directory for Confluence to store its configuration files. # ########################### # Note for Windows Users # ########################### # # Each backslash in your path must be written as a forward slash. # - For example: # c:\confluence\data # # should be written as: # # c:/confluence/data ########################### # Note for Unix Users # ########################### # - For example: # confluence.home=/var/confluence # # NOTE: If the path of your confluence.home directory contains symlinks, # please set confluence.home to the absolute path, otherwise problems may occur. # - For example: # confluence.home=/data/confluence/ (where /data is a symlink to -> /var/data/) # should be written as: # confluence.home=/var/data/confluence/ ########################### # Configuration Directory # ########################### # specify your directory below (don't forget to remove the '#' in front) confluence.home=/path/to/confluence_home
Issue being tracked in the following location: CONFSERVER-19089 - Multiple home directories can be specified in confluence-init.properties