Skip to content

Commit f86ee7f

Browse files
committed
add Graph Insights option to compose base installations
Signed-off-by: Thomas Telleis <[email protected]>
1 parent 58a1f6b commit f86ee7f

File tree

2 files changed

+31
-1
lines changed
  • docs/deploy-and-configure/installation
    • scenario-local-installation
    • scenario-single-node-cloud-installation

2 files changed

+31
-1
lines changed

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ The code examples in this section assumes that you have POSIX-compliant shell (l
1515
- [docker](https://www.docker.com/) and [docker compose](https://docs.docker.com/compose/install/) (v2) installed locally
1616
- [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) installed locally
1717
- [jq](https://jqlang.github.io/jq/download/) installed locally
18+
- A GraphDB license (free or commercial)
19+
- (optional) A Graph Insighs license
1820
- make - build tools (apt-get install make) installed locally
1921
- At least 4 CPUs and 12GB of RAM (recommended: 16GB) dedicated to docker
2022

@@ -227,6 +229,20 @@ Please open http://docker.localhost:80 for validation.
227229
Run make logs to see log output
228230
```
229231

232+
### (Optional) Enable Graph Insights Extension
233+
234+
If you want to have Graph Insights enabled as well, first you need a license.
235+
Then you can simiply run this:
236+
237+
238+
``` shell
239+
mkdir licenses
240+
ln -s your-license-file.lic graphinsights.lic
241+
make enable-extension EXTENSION=graphinsights
242+
```
243+
244+
Please also visit our extended [documentation for Graph Insights ](../../deploy-and-configure/configuration/graphinsights/#a-enable-in-docker-compose-deployment)
245+
230246
## Initial Login / Test
231247

232248
Open your browser and navigate to <http://docker.localhost>

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

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ sudo timedatectl set-timezone Europe/Berlin
2727

2828
# install needed packages
2929
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg2 \
30-
software-properties-common gnupg lsb-release gettext zip unzip git \
30+
software-properties-common gnupg lsb-release gettext zip unzip git \
3131
make vim jq
3232

3333
# install docker and docker-compose
@@ -141,6 +141,20 @@ systemctl enable cmem-orchestration
141141
systemctl start cmem-orchestration
142142
```
143143

144+
### (Optional) Enable Graph Insights Extension
145+
146+
If you want to have Graph Insights enabled as well, first you need a license.
147+
Then you can simiply run this:
148+
149+
150+
``` shell
151+
mkdir licenses
152+
ln -s your-license-file.lic graphinsights.lic
153+
make enable-extension EXTENSION=graphinsights
154+
```
155+
156+
Please also visit our extended [documentation for Graph Insights ](../../deploy-and-configure/configuration/graphinsights/#a-enable-in-docker-compose-deployment)
157+
144158
## Validation and Finalisation
145159

146160
Open your browser and navigate to the host you have created in DNS server, e.g. `https://corporate-memory.eccenca.dev`

0 commit comments

Comments
 (0)