With tomcat11, vnu webapp is reachable at: http://localhost:8080/vnu On some architectures (eg. i386, loong64), you may also have to launch tomcat with the following JVM option "-Xss%SIZE%k". Where %SIZE% is - 2048 on i386 - 3072 on loong64 To achieve this, you could set the CATALINA_OPTS environment variable this way. SIZE=2048 && echo -e '[Service]\nEnvironment="CATALINA_OPTS=-Xss'$SIZE'k"' | \ systemctl edit --drop-in vnu-tomcat11.conf --stdin tomcat11.service Then restart the service: systemctl restart tomcat11