Engine Installation: Missing Parts

After following the installation instruction we tried to start the services. This failed because there were some packages missing, an error in the lqs service file and a directory missing.

we did the following to fix it:

  • create the logs directory: engineuser@auratest:/opt/aura/engine$ mkdir logs
  • fix the service file:
--- config/systemd/aura-engine-lqs.service	2021-01-15 14:13:53.029441863 +0100
+++ /etc/systemd/system/aura-engine-lqs.service	2021-01-15 14:54:51.950204405 +0100
@@ -7,7 +7,7 @@
 Type=simple
 User=engineuser
 WorkingDirectory=/opt/aura/engine
-ExecStart=/opt/aura/engine/engine/run.sh lqs
+ExecStart=/opt/aura/engine/run.sh lqs
 Restart=always
 
 [Install]
  • install the missing packages: sudo pip3 install flask flask_sqlalchemy http_parser mysqlclient

This seems to be missing in the installation guide, or did we miss something?