Well this is an option that can be added to the mono exec command. I tried doing this, added it to the start command and executed on CLI. It was just giving hundert of lines flying by but did not start Sonarr. Not sure how to use it.
Still strange for me that Sonarr will be installed with version 2.0.0.5343 from sonarr apt package but there is 2.0.0.5344 offered on sonarr admin page as well as on GitHub
Sonarr/Radarr services failed on v6.29.2 Topic is solved
Re: Sonarr/Radarr services failed on v6.29.2
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Re: Sonarr/Radarr services failed on v6.29.2
Mine has been stable for a whole day now where it was crashing constantly before. No guarantees this will work but wont hurt
Add the --debug to this line so it looks like:
If you have radarr - do the same thing for it:
Make the same change as per sonarr:
Then reload the systemd services config:
Restart the services:
Once you can login to the GUI, update them by going to:
System -> Updates -> Install the latest update of both
See how you go, hopefully that helps, i think the --debug was the only thing that actually helped (not sure what that does beyond logging extra info to the debug log) but Sonarr and Radarr were both warning it was missing so it wont hurt to have it there.
Code: Select all
sudo apt update
Code: Select all
sudo apt upgrade
Code: Select all
sudo nano /etc/systemd/system/sonarr.service
Code: Select all
ExecStart=/usr/bin/mono --debug -O=-aot /opt/NzbDrone/NzbDrone.exe -nobrowser -data=/mnt/dietpi_userdata/sonarr
Code: Select all
sudo nano /etc/systemd/system/radarr.service
Code: Select all
ExecStart=/usr/bin/mono --debug -O=-aot /opt/Radarr/Radarr.exe -nobrowser -data=/mnt/dietpi_userdata/radarr
Code: Select all
sudo systemctl daemon-reload
Code: Select all
sudo systemctl restart sonarr
Code: Select all
sudo systemctl restart radarr
System -> Updates -> Install the latest update of both
See how you go, hopefully that helps, i think the --debug was the only thing that actually helped (not sure what that does beyond logging extra info to the debug log) but Sonarr and Radarr were both warning it was missing so it wont hurt to have it there.
Re: Sonarr/Radarr services failed on v6.29.2
I already added --debug for a while now and it still crashes.. it goes for about an hour then crashes...
Re: Sonarr/Radarr services failed on v6.29.2
Weird mine is all stable after doing this.
Re: Sonarr/Radarr services failed on v6.29.2
Apt upgrade did pull some mono updates so might be worth doing if you haven't already
-
- Posts: 39
- Joined: Sat Jan 12, 2019 11:06 pm
-
- Posts: 39
- Joined: Sat Jan 12, 2019 11:06 pm
Re: Sonarr/Radarr services failed on v6.29.2
It actually only *looks* like it's not starting sonarr. I wouldn't recommend anyone run that --trace version of the startup command on an rpi. Doing so on mine just about set my pi on fire and finally caused a broken ssh pipe that required a restart on the pi.Joulinar wrote: ↑Mon May 18, 2020 9:37 am Well this is an option that can be added to the mono exec command. I tried doing this, added it to the start command and executed on CLI. It was just giving hundert of lines flying by but did not start Sonarr. Not sure how to use it.
Still strange for me that Sonarr will be installed with version 2.0.0.5343 from sonarr apt package but there is 2.0.0.5344 offered on sonarr admin page as well as on GitHub
The issue with the apt versions is that one is a dev version, according to a dev on the sonarr discord.
-
- Posts: 39
- Joined: Sat Jan 12, 2019 11:06 pm
Re: Sonarr/Radarr services failed on v6.29.2
Adding --debug didn't work here either. FYI. Thanks, anyway, for the tip, Gary.
Here are the last lines of the debug log before the crash:
Code: Select all
20-5-19 16:24:27.3|Info|RssSyncService|Starting RSS Sync
20-5-19 16:24:27.3|Debug|FetchAndParseRssService|Available indexers 1
20-5-19 16:24:27.3|Debug|Newznab|Downloading Feed https://api.nzbgeek.info/api?t=tvsearch&cat=5030,5040&extended=1&apikey=(removed)&offset=0&limit=100
Re: Sonarr/Radarr services failed on v6.29.2
ok I found the point why a dev version is installed. You can switch to master by doing
and change develop into master
afterwards you can run apt update && apt upgrade and you will be updated to nzbdrone 2.0.0.5344
Code: Select all
nano /etc/apt/sources.list.d/sonarr.list
afterwards you can run apt update && apt upgrade and you will be updated to nzbdrone 2.0.0.5344
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
-
- Posts: 39
- Joined: Sat Jan 12, 2019 11:06 pm
Re: Sonarr/Radarr services failed on v6.29.2
Thank you for this!Joulinar wrote: ↑Tue May 19, 2020 11:37 pm ok I found the point why a dev version is installed. You can switch to master by doing
and change develop into masterCode: Select all
nano /etc/apt/sources.list.d/sonarr.list
afterwards you can run apt update && apt upgrade and you will be updated to nzbdrone 2.0.0.5344