Page 1 of 1

Radarr and SABNZD on Umbrel - Radarr reports download directory does not exist

Posted: November 27th, 2023, 6:49 pm
by surfshady
Here from Radarr:

You are using docker; download client SABnzbd places downloads in /config/Downloads/complete but this directory does not appear to exist inside the container. Review your remote path mappings and container volume settings.

All the SERvarr apps on Umbrel use this volume mapping in the docker-compose.yml :- ${UMBREL_ROOT}/data/storage/downloads:/downloads

whereas SABnzbd uses: - ${UMBREL_ROOT}/data/storage/downloads:/config/Downloads

This creates an error where files downloaded by SABnzbd are not picked up and moved by Radarr as it complains they are not in the folder specified by SABnzbd: Downloaded - Waiting to impprt:
No files found are eligible for import in /config/Downloads/complete/Joker.2019.1080p.Remux.blah.blah

The file is there in {UMBREL_ROOT}/data/storage/downloads:/downloads/complete but Radarr is looking for the path specified in SABnzbd.

How can this be resolved?

Re: Radarr and SABNZD on Umbrel - Radarr reports download directory does not exist

Posted: November 27th, 2023, 7:03 pm
by surfshady
Here is the exact error from the Radarr log file:
2023-11-27 23:49:03.9|Error|DownloadedMovieImportService|Import failed, path does not exist or is not accessible by Radarr: /config/Downloads/complete/Joker.2019.1080p.Remux.AVC.Atmos.TrueHD.7.1-playBD. Ensure the path exists and the user running Radarr has the correct permissions to access this file/folder

Affects Sonarr as well:

2023-11-28 00:04:15.2|Error|DownloadedEpisodesImportService|Import failed, path does not exist or is not accessible by Sonarr: /config/Downloads/complete/Game.Of.Thrones.S06.iNTERNAL.1080P.BluRay.10Bit.AAC7.1.H265-xsHQ. Ensure the path exists and the user running Sonarr has the correct permissions to access this file/folder

Re: Radarr and SABNZD on Umbrel - Radarr reports download directory does not exist

Posted: November 28th, 2023, 12:56 pm
by surfshady
Fixed.
1. I edited the docker-compose.yml replacing this line:
- ${UMBREL_ROOT}/data/storage/downloads:/config/Downloads
WITH
- ${UMBREL_ROOT}/data/storage/downloads:/downloads

2. I edited the sabnzbd.ini file replacing these lines:
download_dir = Downloads/incomplete
complete_dir = Downloads/complete
WITH
download_dir = /downloads/incomplete
complete_dir = /downloads/complete

No errors in Radarr or Sonarr now and downloaded files are now being removed form /complete as expected.