KavitaReader: Difference between revisions
From FlowerHouseWiki
Line 58: | Line 58: | ||
[Install] | [Install] | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
</syntaxhighlight | </syntaxhighlight> | ||
<p>Reload systemd, enable at boot and start</p> | <p>Reload systemd, enable at boot and start</p> | ||
Line 65: | Line 65: | ||
systemctl enable kavita | systemctl enable kavita | ||
systemctl start kavita | systemctl start kavita | ||
</syntaxhighlight | </syntaxhighlight> |
Revision as of 15:50, 28 December 2021
IP: | 192.168.88.17 |
---|---|
MAC: | F2:1A:93:6C:B2:83 |
Domain: | reader.flowerhouse.at |
OS: | Debian Bullseye |
---|---|
RAM: | 1024MB |
Cores: | 4 |
Privileged: | Yes |
The KavitaReader-LXC is reachable under 192.168.88.17
which is located in the ServerVLAN.
The subdomain is reader.flowerhouse.at which is handled by the ReverseProxy.
Basic Setup/Update
Download latest version
wget https://github.com/Kareadita/Kavita/releases/download/v0.?.?/kavita-linux-x64.tar.gz
Untar it
tar -xvf kavita-linux-x64.tar.gz
Copy/Replace to path
mv Kavita /opt
Set rights for files
chmod
systemd service
Create service file
nano /etc/systemd/system/kavita.service
Paste following content
[Unit]
Description=Kavita Server
After=network.target
[Service]
User=kavita
Group=jellyfin
Type=simple
WorkingDirectory=/opt/Kavita
ExecStart=/opt/Kavita/Kavita
TimeoutStopSec=20
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target
Reload systemd, enable at boot and start
systemctl reload
systemctl enable kavita
systemctl start kavita