#can't connect radarr profile

4 messages · Page 1 of 1 (latest)

wide mauve
#

Running a fully functional server with traefik and the usual suspects. Now trying to setup overseerr, but having issues connecting radarr profile. Plex connects with Hostname 172.22.0.2 & Port 32400 and the libraries load. On next page I'm having trouble to get Radarr profile added, see errors below for various tried hostname / ip combinations:

2024-06-18T18:46:08.991Z [error][Radarr]: [Radarr] Failed to retrieve profiles: connect ETIMEDOUT 172.18.0.10:7878 
2024-06-18T18:51:10.047Z [error][Radarr]: [Radarr] Failed to retrieve profiles: connect ETIMEDOUT 192.168.0.201:7878 
2024-06-18T18:51:40.102Z [error][Radarr]: [Radarr] Failed to retrieve profiles: getaddrinfo EAI_AGAIN radarr 

input overseerr menu

Hostname / ip: see above
Port: 7878

How do I fix this?

#

Went to plex.tv/web and fetched 172.22.0.2 from remote access. Now I'm getting the following error:

2024-06-18T18:59:02.375Z [error][Radarr]: [Radarr] Failed to retrieve profiles: connect ECONNREFUSED 172.22.0.2:7878 ```
#

thinking out loud here, overseerr and plex run on the default bridge network. The arrs are on a host network called 'proxy'.

wide mauve
#

Some additional context, see overseerr and radarr configs below:

  overseerr:
    image: lscr.io/linuxserver/overseerr:latest
    container_name: overseerr
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK=002
      - TZ=Europe/Brussels
    volumes:
      - $DOCKERDIR/appdata/overseerr/config:/config
    ports:
      - "5055:5055"
    restart: unless-stopped

  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    restart: unless-stopped
    networks:
      - proxy
    ports:
      - "7878:7878"
    volumes:
      - $DOCKERDIR/appdata/radarr:/config
      - /mnt/storage/data:/data
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK=002
      - TZ=Europe/Brussels```
plex and overseerr are both on default bridge, the arrs all run on host network proxy. Tried to add the networks section to overseerr but then plex becomes unreachable. 

How do I get overseerr to connect both with the arrs and plex interchangeably?