Page 1 of 1

Unrar Error Code: 9

Posted: 10 May 2019, 22:35
by Voipro
Had a sudden issue with NZBGet.

I run NZBGet within Docker on a Linux server.

I originally had everything working. NZB was downloading to the proper folders and everything then I decided to change some configurations in Sonarr then suddenly I now can't unpack my downloads to my folder anymore.

From NZBGet logs I get:

Code: Select all

ERROR	Fri May 10 2019 16:28:25	Unpack for *File* failed.
ERROR	Fri May 10 2019 16:28:20	Could not delete temporary directory /TV/*file*/_unpack: No such file or directory
ERROR	Fri May 10 2019 16:28:20	Unrar error code: 9
ERROR	Fri May 10 2019 16:28:20	Could not create directory /TV/*file*/_unpack: could not create directory : No such file or directory 
Now from research I understand that it's possibly related to a permissions issue. When I built the docker I used the environment variable (1000 is my OS user and group)

Code: Select all

-e PUID=1000 -e PGID=1000 \
And ran this on Linux

Code: Select all

chmod -R 777 /downloadpath/TV
Even for test I downloaded SABnzb and that one works just fine. Any suggestions?