I have an executable war Spring Boot war file, built from IntelliJ, that I have started like this on Linux for a number of previous versions:
java -jar app.war
However, when I try to run the war file in the latest app version, it just hangs for me - nothing is output. Running ps x
shows Sl+, that the app is in an interruptiable sleep, is multi-threaded, and is in the foreground process group.
Another user has no issues in running the exact same executable war file with the exact same commandline. For me, I don't even get the initial app ascii art.
- The file permissions are identical to past versions
- The user/group ownership is the same
- The previous versions still work (which rules out to me any java setup/classpath/environment variable issues)
Any recommendations for next steps in debugging would be greatly appreciated.