How to run Confluence Data Center with an embedded H2 database for testing purposes
Platform Notice: Data Center - This article applies to Atlassian products on the Data Center platform.
Note that this knowledge base article was created for the Data Center version of the product. Data Center knowledge base articles for non-Data Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
目的
2021 年 2 月 2 日 ( サーバーの販売終了日) 以降、Data Center 評価ライセンスの生成のみが可能となります。つまり、Confluence セットアップ ウィザードには、組み込みの H2 データベースを使用するオプションは含まれなくなります。
The purpose of this article is to explain how to run non-clustered (single node) Confluence Data Center installations with an embedded H2 database for testing and app development purposes. You can run an H2 database using existing automated tooling through Atlassian Maven Plugin Suite (AMPS).
ソリューション
- Download and Install the AMPS SDK
- Run the AMPS SDK.
You can pass parameters on the command line in the form:
atlas-run-standalone --product confluence
AMPS will use the latest stable version of Confluence. If the <confluence-home>/confluence.cfg.xml
file includes an H2 database URL, Confluence will start an H2 instance.
Here are some useful parameters:
パラメーター | 説明 | 例 |
---|---|---|
version | Specify the version of the product to run (default is RELEASE) | 1.0 |
http-port | The HTTP port for the servlet container | 8080 |
ajp-port | The AJP port for the servlet container | 7412 |
plugins | Comma-delimited list of plugin artifacts in GROUP_ID:ARTIFACT_ID:VERSION form, where version can be ommitted, defaulting to LATEST |
|
lib-plugin | Comma-delimited list of lib artifacts in GROUP_ID:ARTIFACT_ID:VERSION form, where version can be ommitted, defaulting to LATEST |
|
bundled-plugins | Comma-delimited list of bundled plugin artifacts in GROUP_ID:ARTIFACT_ID:VERSION form, where version can be ommitted, defaulting to LATEST |
|
Note: different SDK releases offer different parameters.
Learn how to work with the SDK