ONLY Plexamp not finding local server

Only plexamp is not able to see the server. Plex app (on same device) is able to see the server access it locally. I have not opened it to remote connections.

Setup:

Running in Docker-swarm and bridge mode; plex latest image with internal IP’s (172.18.0.9 and 10.0.3.3)

Docker compose

version: "3.3"
services:
  plex:
    image: plexinc/pms-docker:latest
    container_name: plex
    network_mode: bridge
    environment:
      - PUID=1000
      - PGID=1000
      - VERSION=docker
      - PLEX_CLAIM=claim-code
      - ADVERTISE_IP="http://192.168.1.18:32400/"
    volumes:
      - /path/to/plex/config:/config
      - /path/to/plex:/data
    ports:
      - '32400:32400/tcp'
      - '3005:3005/tcp'
      - '8324:8324/tcp'
      - '32469:32469/tcp'
      - '1900:1900/udp'
      - '32410:32410/udp'
      - '32412:32412/udp'
      - '32413:32413/udp'
      - '32414:32414/udp'
    restart: unless-stopped

I am using same user to login (also, the claim code and path to data are right)

LOGS:

I checked the logs from plexamp and it is trying to check the internal IP’s. Some of the significant logs (i believe) are as below:

DEBUG - Networking: Create request 2: (GET https://pubsub.plex.tv/sub/eventsource/null/null?X-Plex-Token=).

DEBUG - Networking: Completed request 2: (GET https://pubsub.plex.tv/sub/eventsource/null/null?X-Plex-Token=) with code 403 (have 0 bytes) in 652 ms.

INFO - PubSub: Connection broken to plex.tv, reconnecting.

DEBUG - Networking: Create request 95: (GET https://172-18-0-6.4a1a4c514a26458fbcc3ae3b3cde501b.plex.direct:32400/).

WARNING - DEVICE: Server connection https://172-18-0-6.4a1a4c514a26458fbcc3ae3b3cde501b.plex.direct:32400 didn’t work for alpha: HTTP status -28

DEBUG - Networking: Completed request 99: (GET http://172.18.0.6:32400/identity) with code -28 (have 0 bytes) in 10007 ms.

Any insights will be helpful.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.