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

Report & discuss bugs found in SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
surfshady
Newbie
Newbie
Posts: 3
Joined: November 27th, 2023, 6:41 pm

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

Post 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?
surfshady
Newbie
Newbie
Posts: 3
Joined: November 27th, 2023, 6:41 pm

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

Post 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
surfshady
Newbie
Newbie
Posts: 3
Joined: November 27th, 2023, 6:41 pm

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

Post 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.
Post Reply