You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable `generateHosts = false` in your `/etc/hosts` file to make sure that this file won't be overwritten from the host system on every restart.
64
+
65
+
To be able to use `systemd` services and commands make sure `/etc/wsl.conf` is available with this content (should be the default with wsl v2):
66
+
67
+
```shell
68
+
[boot]
69
+
systemd=true
70
+
```
71
+
72
+
(Optional) If you need to restart your WSL use in Powershell:
73
+
74
+
```shell
75
+
wsl --shutdown
76
+
```
77
+
78
+
(Optional) you can create a `.wslconfig` file under `C:\users\<your username>` to specify some system resources like:
79
+
80
+
```shell
81
+
[wsl2]
82
+
memory=16GB # restrict ram wsl can use
83
+
processors=4 # restrict cpu-cores
84
+
swap=8GB # set swap size
85
+
swapFile=C:/Users/<your username>/wsl/Debianswap.vhdx # location to swap-file
86
+
```
87
+
88
+
Alternatively, (with wsl v2) you may use the graphical configuration application _WSL Settings_.
89
+
18
90
## Setup & Check Installation Environment
19
91
92
+
For docker we recommend to use the linux docker within wsl.
93
+
Follow the instruction in [Server Provisioning in Scenario: Single Node Cloud Installation](../scenario-single-node-cloud-installation/index.md#server-provisioning).
94
+
Alternatively, you may use docker for desktop and enable wsl integration in the settings.
95
+
20
96
Open a terminal window, create a directory, copy and extract docker orchestration there.
21
97
22
-
```bash
23
-
# Create eccenca-corporate-memory directory in your ${HOME} and set as a
98
+
```shell
99
+
# Create eccenca-corporate-memory directory in your ${HOME} and set as a
To install Corporate Memory, you need to modify your local hosts file (located in /etc/hosts), minimal configuration is as follows:
67
144
68
-
```bash
145
+
```shell
69
146
##
70
147
# Host Database
71
148
#
@@ -76,35 +153,37 @@ To install Corporate Memory, you need to modify your local hosts file (located i
76
153
127.0.0.1 docker.localhost
77
154
```
78
155
79
-
Corporate Memory uses Ontotext GraphDB triple store as default backend. Graphdb is available as free version and does not requires a license. If you have a license for graphdb you can copy the file to the ```license```folder inside Corporate Memory's root folder.
156
+
Corporate Memory uses Ontotext GraphDB triple store as default backend.
157
+
Graphdb is available as free version and does not requires a license.
158
+
If you have a license for Ontotext GraphDB you can copy the file to the `license` folder inside Corporate Memory's root folder.
|`admin`|`admin`| Is member of the global admin group (can see and do anything) |
232
+
| account | password | description |
233
+
| ------- | -------- | ----------- |
234
+
|`admin`|`admin`| Is member of the global admin group (can see and do anything) |
156
235
157
236
After successful login, you will see Corporate Memory interface. You can now proceed to the :arrow_right:[Getting Started](../../../getting-started/index.md) section.
158
237
159
238
### Backup
160
239
161
240
To create a backup you have to prepare the backup folders. Make sure these folders exists and have write permissions. Run this:
162
241
163
-
```bash
242
+
```shell
164
243
# assuming you are currently in the the cmem-orchestration folder
0 commit comments