-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
309d84f
commit 0a85ff4
Showing
2 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
ontrack-docs/src/docs/asciidoc/installation-dependencies.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,43 @@ | ||
[[installation-dependencies]] | ||
=== Installation dependencies | ||
|
||
Ontrack relies on the following components to be available: | ||
|
||
* Postgres - for storage of information | ||
* Elasticsearch - for search indexation | ||
|
||
[[installation-postgres]] | ||
==== Postgres | ||
|
||
Versions 9.5.+ and version 10.+ of Ontrack have been tested. | ||
|
||
By default, Ontrack will use the following | ||
<<configuration-properties,configuration properties>> and their default | ||
values to connect to Postgres: | ||
|
||
|=== | ||
| Property | Description | Default value | ||
|
||
| spring.datasource.url | JDBC URL to the Postgres Ontrack DB | `jdbc:postgresql://localhost/ontrack` | ||
| spring.datasource.username | Username used to connect to the Postgres Ontrack DB | `ontrack` | ||
| spring.datasource.password | Password used to connect to the Postgres Ontrack DB | `ontrack` | ||
|=== | ||
|
||
Other properties are available in link:https://docs.spring.io/spring-boot/docs/{spring-boot-version}/reference/html/appendix-application-properties.html#data-properties[Spring Boot]. | ||
|
||
[[installation-elasticsearch]] | ||
==== Elasticsearch | ||
|
||
Version 7.5.+ has been tested. | ||
|
||
By default, Ontrack will use the following | ||
<<configuration-properties,configuration properties>> and their default | ||
values to connect to Postgres: | ||
|
||
|=== | ||
| Property | Description | Default value | ||
|
||
| spring.elasticsearch.rest.uris | REST URI of Elasticsearch | `http://localhost:9200` | ||
|=== | ||
|
||
Other properties are available in link:https://docs.spring.io/spring-boot/docs/{spring-boot-version}/reference/html/appendix-application-properties.html#data-properties[Spring Boot]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters