Confluence Fails to Start After Crowd Integration
プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム。
この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。
*Fisheye および Crucible は除く
症状
An error similar to below is found in atlassian-confluence.log:
2009-12-22 11:59:09,408 ERROR [main] [springframework.web.context.ContextLoader] initWebApplicationContext
Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean
with name 'pluginResourceLocator' defined in class path resource [services/pluginServiceContext.xml]:
Cannot resolve reference to bean 'webResourceIntegration' while setting constructor argument with index 0;
nested exception is
:
:
: <massive caused by clauses>
:
Caused by: java.lang.RuntimeException: Cannot specify repository without a key
at com.atlassian.user.configuration.xml.XMLConfigurationParser.parseRepositoryIdentifier(XMLConfigurationParser.java:159)
at com.atlassian.user.configuration.xml.XMLConfigurationParser.parseRepositories(XMLConfigurationParser.java:112)
at com.atlassian.user.configuration.xml.XMLConfigurationParser.parse(XMLConfigurationParser.java:79)
at com.atlassian.user.configuration.xml.XMLConfiguration.init(XMLConfiguration.java:91)
原因
Confluence Atlassian User component failed to parse the configuration set in <confluence install>/confluence/WEB-INF/classes/atlassian-user.xml. A wrong configuration used in the file can cause this. For example, you may have duplicate <atlassian-user> and <repositories> as a result of copy and paste:
<atlassian-user>
<repositories>
<atlassian-user>
<repositories>
<crowd key="crowd" name="Crowd Repository"/>
</repositories>
</atlassian-user>
</repositories>
</atlassian-user>
ソリューション
Make sure that your atlassian-user.xmlonly contains the following:
<atlassian-user>
<repositories>
<crowd key="crowd" name="Crowd Repository"/>
</repositories>
</atlassian-user>
この内容はお役に立ちましたか?