sander wrote: ↑December 8th, 2025, 6:04 pm
Try this:
/usr/bin/flatpak run org.sabnzbd.sabnzbd -s 0.0.0.0
That leads to an error:
Code: Select all
Dez 09 06:35:30 pi5 systemd[1]: Started sabnzbd.service - SABnzbd headless server.
Dez 09 06:35:30 pi5 systemd[786]: Started app-flatpak-org.sabnzbd.sabnzbd-41204.scope.
Dez 09 06:35:32 pi5 flatpak[41212]: Fatal error:
Dez 09 06:35:32 pi5 flatpak[41212]: Cannot access the user profile.
Dez 09 06:35:32 pi5 flatpak[41212]: Please start with sabnzbd.ini file in another location
Dez 09 06:35:32 pi5 systemd[1]: sabnzbd.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
Dez 09 06:35:32 pi5 systemd[1]: sabnzbd.service: Failed with result 'exit-code'.
Using
Code: Select all
/usr/bin/flatpak run org.sabnzbd.sabnzbd -f -s 0.0.0.0
sabnzbd starts fine, but is still inaccessible from my browser
(tried to show the output of netcat here, but I can't submit this as I will be blocked.
This website is using a security service to protect itself from online attacks. The action you just performed triggered the security solution. There are several actions that could trigger this block including submitting a certain word or phrase, a SQL command or malformed data.
On pi5 port 8080 is listening:
Code: Select all
# netstat -antop|grep 8080
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 41298/python3 aus (0.00/0/0)
sabnzbd.service looks like this:
Code: Select all
[Unit]
Description=SABnzbd headless server
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
ExecStart=/usr/bin/flatpak run org.sabnzbd.sabnzbd -f -s 0.0.0.0
ExecStop=/usr/bin/flatpak kill org.sabnzbd.sabnzbd
Restart=always
RestartSec=3
[Install]
WantedBy=multi-user.target