I want to run my Quarkus app from a systemd service #46982
-
Hello! I've been trying to set up my Quarkus app to run at startup on a Rocky Linux machine. I put it in the Basically, the app is supposed to play videos, ones that are local and others that are in a directory adjacent to the app. The app is supposed to play the "external" videos as soon as they are preloaded. Now for the problem I ran into: Now this is my service:
My first presumption was that - using ffmpeg for my codecs, needed exactly for the external videos - the path to it was wrong or something. But I made a service to Does anyone have any solutions to this, please? I've been racking my brains about it for some days now 😢 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Found the solution.
Everything works as intended now. |
Beta Was this translation helpful? Give feedback.
Found the solution.
XDG_RUNTIME_DIR
to the value that was also set for the user (found usingset
command).Everything works as intended now.