Forked from
funkwhale / funkwhale
6327 commits behind the upstream repository.
-
Eliot Berriot authoredVerified99359094
systemd.rst 1.60 KiB
Systemd configuration
Systemd offers a convenient way to manage your Funkwhale instance if you're not using docker.
We'll see how to setup systemd to proprely start a Funkwhale instance.
First, download the sample unitfiles:
curl -L -o "/etc/systemd/system/funkwhale.target" "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/funkwhale.target"
curl -L -o "/etc/systemd/system/funkwhale-server.service" "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/funkwhale-server.service"
curl -L -o "/etc/systemd/system/funkwhale-worker.service" "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/funkwhale-worker.service"
curl -L -o "/etc/systemd/system/funkwhale-beat.service" "https://dev.funkwhale.audio/funkwhale/funkwhale/raw/|version|/deploy/funkwhale-beat.service"
This will download three unitfiles:
-
funkwhale-server.service
to launch the Funkwhale web server -
funkwhale-worker.service
to launch the Funkwhale task worker -
funkwhale-beat.service
to launch the Funkwhale task beat (this is for recurring tasks) -
funkwhale.target
to easily stop and start all of the services at once
You can of course review and edit them to suit your deployment scenario if needed, but the defaults should be fine.
Once the files are downloaded, reload systemd:
systemctl daemon-reload
And start the services:
systemctl start funkwhale.target
You can check the statuses of all processes like this:
systemctl status funkwhale-\*