This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
I've racked my brain on this off/on for a week now and can't think of anything else to check.
I'm using 'linuxserver/radarr' image from docker hub.
I've gone into the radarr container "docker exec -it radarr /bin/bash" and I can mkdir/rmdir/touch files manually.
But any movie that I tell radarr to download, it grabs nzb, hands to nzbget, then nothing. (sonarr is working). If I try to manually import nada, I get the same error in the logs. Any advice appreciated.
System.UnauthorizedAccessException: Access to the path "/movies/Movie (2000)" is denied. at System.IO.Directory.CreateDirectoriesInternal (System.String path) [0x0005e] in <0f8aeac9d63d4b8aa575761bb4e65b79>:0 at System.IO.Directory.CreateDirectory (System.String path) [0x0008f] in <0f8aeac9d63d4b8aa575761bb4e65b79>:0 at NzbDrone.Common.Disk.DiskProviderBase.CreateFolder (System.String path) [0x00048] in C:\projects\radarr-usby1\src\NzbDrone.Common\Disk\DiskProviderBase.cs:203 at NzbDrone.Core.MediaFiles.MovieFileMovingService.CreateFolder (System.String directoryName) [0x0007a] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\MovieFileMovingService.cs:223 at NzbDrone.Core.MediaFiles.MovieFileMovingService.EnsureMovieFolder (NzbDrone.Core.MediaFiles.MovieFile movieFile, NzbDrone.Core.Movies.Movie movie, System.String filePath) [0x0005e] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\MovieFileMovingService.cs:200 at NzbDrone.Core.MediaFiles.MovieFileMovingService.EnsureMovieFolder (NzbDrone.Core.MediaFiles.MovieFile movieFile, NzbDrone.Core.Parser.Model.LocalMovie localMovie, System.String filePath) [0x00000] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\MovieFileMovingService.cs:180 at NzbDrone.Core.MediaFiles.MovieFileMovingService.MoveMovieFile (NzbDrone.Core.MediaFiles.MovieFile movieFile, NzbDrone.Core.Parser.Model.LocalMovie localMovie) [0x00032] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\MovieFileMovingService.cs:78 at NzbDrone.Core.MediaFiles.UpgradeMediaFileService.UpgradeMovieFile (NzbDrone.Core.MediaFiles.MovieFile movieFile, NzbDrone.Core.Parser.Model.LocalMovie localMovie, System.Boolean copyOnly) [0x000b0] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\UpgradeMediaFileService.cs:69 at NzbDrone.Core.MediaFiles.MovieImport.ImportApprovedMovie.Import (System.Collections.Generic.List`1[T] decisions, System.Boolean newDownload, NzbDrone.Core.Download.DownloadClientItem downloadClientItem, NzbDrone.Core.MediaFiles.MovieImport.ImportMode importMode) [0x00258] in C:\projects\radarr-usby1\src\NzbDrone.Core\MediaFiles\MovieImport\ImportApprovedMovie.cs:109
I used the following to create my Sonarr container.
docker create \
--name=sonarr \
--restart=always \
-p 8989:8989 \
-e PUID=1000 \
-e PGID=1000 \
-v /etc/localtime:/etc/localtime:ro \
-v /home/william/configs/sonarr:/config \
-v /mnt/tv_shows:/tv \
-v /mnt/data/downloads:/downloads \
linuxserver/sonarr
and this for Radarr
docker create \
--name=radarr \
--restart=always \
-p 7878:7878 \
-e PUID=1000 \
-e PGID=1000 \
-v /etc/localtime:/etc/localtime:ro \
-v /home/william/configs/radarr:/config \
-v /mnt/movies:/movies \
-v /mnt/data/downloads:/downloads \
linuxserver/radarr
From the Settings/Media Management/Permissions I've matched everything between the apps.
I've rm/recreated and restarted the radarr container several times thinking something was stuck or that I had to after changing settings.
Subreddit
Post Details
- Posted
- 6 years ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/docker/comm...