diff options
author | Pjotr Prins | 2024-03-06 07:57:50 -0600 |
---|---|---|
committer | Pjotr Prins | 2024-03-06 07:57:52 -0600 |
commit | d0f5bae2c42ba5a4191bf56064e5cf22b8456efb (patch) | |
tree | b127a565d2b582f9441c76f24f764a748846d627 /topics/systems/fire-up-genenetwork-system-container.gmi | |
parent | e4b9911adf16c3f8c31cfe332d9c5c1c8b396005 (diff) | |
download | gn-gemtext-d0f5bae2c42ba5a4191bf56064e5cf22b8456efb.tar.gz |
Edits Pjotr
Diffstat (limited to 'topics/systems/fire-up-genenetwork-system-container.gmi')
-rw-r--r-- | topics/systems/fire-up-genenetwork-system-container.gmi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/topics/systems/fire-up-genenetwork-system-container.gmi b/topics/systems/fire-up-genenetwork-system-container.gmi index bb2e55e..11cd9d2 100644 --- a/topics/systems/fire-up-genenetwork-system-container.gmi +++ b/topics/systems/fire-up-genenetwork-system-container.gmi @@ -14,6 +14,7 @@ We have the following check list * [ ] Create a system definition * [ ] Fire up container and get a shell inside using nsenter * [ ] Start mariadb +* [ ] Start redis ## Create a system definition @@ -129,3 +130,13 @@ herd start mysql | db_webqtl_s | +---------------------------+ ``` + +Once I got this working, however, I decided to run mariadb on the base system instead (outside the container). The same with redis (see below). + +# Start redis + +After adding the default redis-service make sure the database is mounted on /var/lib/redis. `herd status` in the container will tell redis is running. + +Note that, again, file permissions may prevent redis from running. Debug output appears in /var/log/messages. + +The way to deal with this is chown in the activation stage. The alternative is to run a service directly on the host machine. |