Skip to content

Commit af05a68

Browse files
author
Sebastian Plott
committed
added the GraphDB license instructions and more small adjustments
1 parent 108266a commit af05a68

File tree

3 files changed

+38
-3
lines changed
  • docs/deploy-and-configure/installation

3 files changed

+38
-3
lines changed

docs/deploy-and-configure/installation/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,20 @@ This page describes proven deployment scenarios for eccenca Corporate Memory.
88
All Corporate Memory components are distributed as Docker images and can be obtained from eccenca's container repository service.
99
To run them you need a Docker enabled Linux server.
1010

11+
Corporate Memory uses Ontotext GraphDB triple store as default backend.
12+
Graphdb is available as free version and does not requires a license.
13+
You need to copy your license for Ontotext GraphDB to the `license` folder inside Corporate Memory's root folder.
14+
15+
``` shell
16+
# create the License folder within ${HOME}/cmem-orchestration
17+
mkdir -p licenses
18+
#copy YOUR-LICENSE-FILE
19+
cp YOUR_SE_LICENSE_FILE \
20+
${HOME}/cmem-orchestration-VERSION/licenses/graphdb-se.license
21+
# or
22+
cp YOUR_EE_LICENSE_FILE \
23+
${HOME}/cmem-orchestration-VERSION/licenses/graphdb-ee.license
24+
```
1125

1226
## Operating Systems (OS)
1327

docs/deploy-and-configure/installation/scenario-local-installation/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The code examples in this section assumes that you have POSIX-compliant shell (l
1717
- [jq](https://jqlang.github.io/jq/download/) installed locally
1818
- A GraphDB license ([free](https://www.ontotext.com/products/graphdb/) or commercial)
1919
- (optional) A Graph Insights license
20-
- make - build tools (apt-get install make) installed locally (don't use version 4.4.1)
20+
- make - build tools (apt-get install make) installed locally (don't use version 4.4.1 [](https://savannah.gnu.org/bugs/?63650))
2121
- At least 4 CPUs and 12GB of RAM (recommended: 16GB) dedicated to docker
2222

2323
## Setup & Check Installation Environment
@@ -229,7 +229,10 @@ Corporate Memory uses Ontotext GraphDB triple store as default backend.
229229
Graphdb is available as free version and does not requires a license.
230230
You need to copy your license for Ontotext GraphDB to the `license` folder inside Corporate Memory's root folder.
231231

232-
```shell
232+
``` shell
233+
# create the License folder within ${HOME}/cmem-orchestration
234+
mkdir -p licenses
235+
#copy YOUR-LICENSE-FILE
233236
cp YOUR_SE_LICENSE_FILE \
234237
${HOME}/cmem-orchestration-VERSION/licenses/graphdb-se.license
235238
# or

docs/deploy-and-configure/installation/scenario-single-node-cloud-installation/index.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ This page describes a docker-compose based orchestration running on a server ins
1515
- An eccenca partner account for the docker registry as well as the release artifact area
1616
- A GraphDB license ([free](https://www.ontotext.com/products/graphdb/) or commercial)
1717

18+
!!! Info
19+
make - do not use version 4.4.1 [](https://savannah.gnu.org/bugs/?63650)
20+
1821
## Server Provisioning
1922

2023
In this step, you install necessary software on the server and execute the following commands as root:
@@ -29,7 +32,7 @@ sudo timedatectl set-timezone Europe/Berlin
2932
# install needed packages
3033
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg2 \
3134
software-properties-common gnupg lsb-release gettext zip unzip git \
32-
make vim jq
35+
make=4.4.0 vim jq
3336

3437
# install docker and docker-compose
3538
curl -fsSL https://download.docker.com/linux/debian/gpg \
@@ -49,6 +52,21 @@ sudo apt-get install docker-ce docker-ce-cli containerd.io \
4952

5053
## Installation
5154

55+
Corporate Memory uses Ontotext GraphDB triple store as default backend.
56+
Graphdb is available as free version and does not requires a license.
57+
You need to copy your license for Ontotext GraphDB to the `license` folder inside Corporate Memory's root folder.
58+
59+
``` shell
60+
# create the License folder within /opt/cmem-orchestration
61+
mkdir -p /opt/cmem-orchestration/licenses
62+
#copy YOUR-LICENSE-FILE
63+
cp YOUR_SE_LICENSE_FILE \
64+
/opt/cmem-orchestration/licenses/graphdb-se.license
65+
# or
66+
cp YOUR_EE_LICENSE_FILE \
67+
/opt/cmem-orchestration/licenses/graphdb-ee.license
68+
```
69+
5270
!!! info
5371

5472
For username and password in curl command use the credentials to access eccenca Artifactory and docker registry.

0 commit comments

Comments
 (0)