#Cannot connect to my account after migrating to seerr from jellyseerr

51 messages ยท Page 1 of 1 (latest)

gilded schooner
#

Hello, im currently having a problem where my login doesn't work anymore after changing everything to seerr.
Check the file i provided for log and settings.json

Compose:

jellyseerr:
    image: seerr/seerr:develop
    container_name: seerr
    privileged: true
    restart: always
    environment:
      - TZ=${TZ} # timezone (ex: Europe/Paris), defined in .env
      - LOG_LEVEL=debug
    ports:
      - 5055:5055
    volumes:
      - ${ROOT}/seerr:/app/config
charred pasture
#

You're trying to login with local login?

#

Also your compose is also missing few things. Check the #seerr-beta description to see what compose to use

charred pasture
#

From your logs I can see youre trying to use local login instead of media server login

#

Is that what you're intending to do?

gilded schooner
charred pasture
#

That doesn't look like jellyfin login

#

Can you follow the migration guide. Add the proper compose. Deploy. Then send the logs from logs folder

gilded schooner
#
jellyseerr:
    image: seerr/seerr:develop
    container_name: seerr
    privileged: true
    init: true
    restart: always
    environment:
      - TZ=${TZ} # timezone (ex: Europe/Paris), defined in .env
      - LOG_LEVEL=debug
    ports:
      - 5055:5055
    volumes:
      - ${ROOT}/seerr:/app/config
    healthcheck:
      test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status || exit 1
      start_period: 20s
      timeout: 3s
      interval: 15s
      retries: 3

now this is my compose

gilded schooner
#

Cause it's jellyfin login

charred pasture
gilded schooner
#

but with and without it doesn't change anything

charred pasture
#

Okay im not sure about lxc container things but give it a try

#

Anyways thats not related to tbis. I need the proper log file

gilded schooner
charred pasture
gilded schooner
#

Here it is

#

Any other logs you need ?

charred pasture
#

Youre still having permission issues too

#
2025-12-09T09:56:15.002Z [debug][Jobs]: Starting scheduled job: Download Sync 
2025-12-09T09:56:55.280Z [debug][Image Cache]: Something went wrong caching image. {"errorMessage":"EACCES: permission denied, mkdir '/app/config/cache/images/tmdb/gcovm9lrwgn0QWD-VRdBwWvTqsITr6c5k15iY+0+D8A='"}
2025-12-09T09:56:55.280Z [error]: Failed to proxy image {"imagePath":"/t/p/original/dEkFlZzj2cb5F7SShvqkL54E4lr.jpg","errorMessage":"Failed to load image"}
2025-12-09T09:57:09.085Z [info][API]: Found matching Jellyfin user; updating user with Jellyfin {"ip":"90.29.93.100","jellyfinUsername":"Uruk"}
2025-12-09T09:57:15.002Z [debug][Jobs]: Starting scheduled job: Download Sync 
2025-12-09T09:57:18.237Z [debug][Image Cache]: Something went wrong caching image. {"errorMessage":"EACCES: permission denied, mkdir '/app/config/cache/images/tmdb/gcovm9lrwgn0QWD-VRdBwWvTqsITr6c5k15iY+0+D8A='"}
2025-12-09T09:57:18.237Z [error]: Failed to proxy image {"imagePath":"/t/p/original/dEkFlZzj2cb5F7SShvqkL54E4lr.jpg","errorMessage":"Failed to load image"}
2025-12-09T09:57:19.525Z [debug][Image Cache]: Something went wrong caching image. {"errorMessage":"EACCES: permission denied, mkdir '/app/config/cache/images/tmdb/gcovm9lrwgn0QWD-VRdBwWvTqsITr6c5k15iY+0+D8A='"}
2025-12-09T09:57:19.526Z [error]: Failed to proxy image {"imagePath":"/t/p/original/dEkFlZzj2cb5F7SShvqkL54E4lr.jpg","errorMessage":"Failed to load image"}
2025-12-09T09:57:22.069Z [info][API]: Found matching Jellyfin user; updating user with Jellyfin {"ip":"90.29.93.100","jellyfinUsername":"Uruk"}
2025-12-09T09:57:26.359Z [warn][API]: Failed sign-in attempt using invalid Seerr password {"ip":"90.29.93.100","email":"[email protected]","userId":1}
2025-12-09T09:58:15.006Z [debug][Jobs]: Starting scheduled job: Download Sync 
gilded schooner
#

ok changed to test i put 0777

#

everywhere

charred pasture
#

Between jellyseerr -> seerr there has been no changes in how connections work. The only thing that changed was the image being made rootless

charred pasture
#

As said on the guide.

#

You have image caching turned on but youre having permission issues in saving those because your config folder is not properly configured in permissions. You can check out guide to see the exact migration steps

#

Also

#

I woild recommend for the time being

#

Edit settings.json and disable image caching

#

While seerr is down

#

So once you get migration properly done you can enable it ๐Ÿ˜‰

gilded schooner
#

Ok you were right

#

With cacheimage disable now it works

languid scroll
#

other container need this
Because they are poorly writed like jellyseerr in the past

gilded schooner
#

With privileged: true
by default it run as root

#

so not an issue anymore for this

languid scroll
#

only some specific containers needs privileged and even they should not need it with proper capabilities

gilded schooner
#

to make sure i did chown 1000:1000 seer/
and chmod 755 seerr/

languid scroll
#

why chmod ???

#

it only need 1000:1000 as migration stated

#

no more than that

gilded schooner
#

run docker run --rm -v /seedbox/seerr :/data alpine chown -R 1000:1000 /data
and i think now i don't have any error anymore

#

with cache enable

#

yep works now sorry for the disturbing