You should get the tomcat logs in /var/log/tomcat9/catalina.out do you see any messages there that relate to the logging?
If you build the war, do you set the ServoyHome directory correctly? You can set this in the export, either in the exporter or via the parameter "-userHomeDirectory".
Alternatively you can set the ServoyHome in the Tomcat-Startup in /usr/share/tomcat9/bin/setenv.sh:
- Code: Select all
export CATALINA_OPTS="$CATALINA_OPTS -XX:+UseG1GC"
export CATALINA_OPTS="$CATALINA_OPTS -XX:+DisableExplicitGC"
[...]
export CATALINA_OPTS="$CATALINA_OPTS -DSERVOY_USER_HOME=/home/ServoyHome"
Tomcat runs without this file, so it's not necessarily there, you should look where the tomcat on your system (lbs_release -a tells you what distribution you are running) expects this file and create/edit it there.
But for starters, check your war export and the catalina.out for more information, that's the faster route.