aetaric / checkrr

Checkrr Scans your library files for corrupt media and replace the files via sonarr and radarr
MIT License
202 stars 10 forks source link

checkrr not doing anything #54

Closed Jorgisimo closed 1 year ago

Jorgisimo commented 1 year ago

hey guys i am sure i messed up something, but for the life of me i cant figure it out. checkrr runs, but never updates. I have a docker box that also runs my sonarr and radarr

i created the docker container as follows

docker create --name checkrr --restart unless-stopped -p 8585:8585 -e PUID=1026 -e PGID=100 -e TZ='America/New_York' -v /etc/localtime:/etc/localtime:ro -v /DOCKER/CHECKRR/checkrr.yaml:/etc/checkrr.yaml -v /DOCKER/CHECKRR/checkrr.db:/checkrr.db -v /mnt/MEDIA/TV:/tv -v /mnt/MEDIA/ANIME:/anime -v /mnt/MEDIA/MOVIES/:/movies aetaric/checkrr:latest

i downloaded the example file and just created what i needed REMOVED API keys

`checkrr: checkpath:

Checkrr runs i see the gui, but nothing happens

image

aetaric commented 1 year ago

do you see it running in docker logs -f checkrr ?

Jorgisimo commented 1 year ago

Logs were blank. Only logs I saw was when I access the web page. I am trying some stuff tonight to see if I can figure out what’s wrong. But figured I would take a stab here if I missed anything obvious.

Jorge L Duran


From: Dustin Essington @.> Sent: Thursday, March 9, 2023 8:00:23 PM To: aetaric/checkrr @.> Cc: Jorgisimo @.>; Author @.> Subject: Re: [aetaric/checkrr] checkrr not doing anything (Issue #54)

do you see it running in docker logs -f checkrr ?

— Reply to this email directly, view it on GitHubhttps://github.com/aetaric/checkrr/issues/54#issuecomment-1463051323, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AMCUGNWGPF2ZPTGA3WYRU7TW3J4KPANCNFSM6AAAAAAVVQHF2Y. You are receiving this because you authored the thread.Message ID: @.***>

Jorgisimo commented 1 year ago

so made some progress creating the csvfile and logfile and giving them their own volume got it to scan. its hashing, but I don't see it talking to radarr or sonarr I'll give it the night to run to see if it updates the UI.

changing `checkrr: checkpath:

image

aetaric commented 1 year ago

You'd have to double check your mappings. The format for mappings is "path arr service sees": "path checkrr sees". If the paths on the arr side don't match what the arr service sees on disk, it will not match to the service.

Checkrr walks through file roots in the arr service to find matching paths swapping out what it sees for the what the arr service is expected to see. So if they don't match in the config, it'll never identify the right service.

Jorgisimo commented 1 year ago

Checked mapping last night and they are right. I am going to go thru the logs again and see if I see any errors. For sure sonarr and radarr aren’t working and my pushover isn’t sending notifications so I guess I have something wrong after the scan section keeping the bottom from processing right.

Jorgisimo commented 1 year ago

so spent a few hours and it seems the issue is that it was not connecting to sonarr and radarr. i tried FQDN, shortcut names with and without quotes. nothing was working. changed the address to the IP and its finally working. not sure why the addresses didnt working since overserr and other apps use the same address and port combinations, but progress!

aetaric commented 1 year ago

my pushover isn’t sending notifications

Did you set the recipient? can be a group chat token or a user token, but it must be a valid notification token. See also: https://github.com/gregdel/pushover#send-a-simple-message if you happen to be able to read golang...

Jorgisimo commented 1 year ago

Work has kept me from doing too much testing in the last few days I created an app in pushover deleted the tokens I had in there and I am trying again tonight. If it doesn’t work I’ll try my sonarr ones to see if it’s something wrong with the new app token.

aetaric commented 1 year ago

As mentioned in #56, remove the logfile directive if you want the logs to goto standard out instead of a file.

Jorgisimo commented 1 year ago

yup alert started working! thanks for everything