Server Version#: 1.23.5.4841-549599676-ls63
Player Version#: Mac 1.33.0.2444-a220eae4
Hi All,
A few days ago my NAS drive died containing all of my media. Since then I have been battling to get everything running as it was (eg Radarr, Sonarr) as so much was on my Synology NAS I decided to move them to my Docker container so that if the NAS drive died again I would have less to contend with.
To cut a long story short, to get those to work I made a lot of changes to my docker config and now I think its broken Plex.
When I load up the desktop app (Mac) or the web app, I cannot see my server and it just keeps trying to reconnect. I have deleted and tried to find it again but I’m having no luck even after following the troubleshooting steps.
This is my Docker config:
plex:
image: ghcr.io/linuxserver/plex
container_name: plex
#network_mode: host
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
environment:
- TZ=Europe/London
- HOSTNAME=PLEX-PI
- ADVERTISE_IP=http://192.168.1.200:32400/
- PUID=0
- PGID=0
- VERSION=docker
#- UMASK=022 #optional
- PLEX_CLAIM=claim-SdWnaL_xxxxxxxxxxxxL
volumes:
- /etc/plex:/config
- /mnt/data:/data
#- /mnt/tvshows:/tv
#- /mnt/movies:/movies
- /mnt/downloads:/downloads
restart: always
The only thing appearing in the logs is this:
[root@localhost Logs]# tail -f 'Plex Media Server.log'
Jul 21, 2021 18:03:10.985 [0x7fa62e9aa8] DEBUG - Request: [127.0.0.1:53332 (Loopback)] GET /servers (2 live) GZIP Signed-in Token (beckyboop123)
Jul 21, 2021 18:03:10.986 [0x7fa6d94aa8] DEBUG - Completed: [127.0.0.1:53332] 200 GET /servers (2 live) GZIP 0ms 496 bytes
Jul 21, 2021 18:03:10.993 [0x7fa62e9aa8] DEBUG - Request: [127.0.0.1:53334 (Loopback)] GET /library/sections (2 live) GZIP Signed-in Token (beckyboop123)
Jul 21, 2021 18:03:10.995 [0x7fa6d71aa8] DEBUG - Completed: [127.0.0.1:53334] 200 GET /library/sections (2 live) GZIP 2ms 876 bytes
Jul 21, 2021 18:03:11.001 [0x7fa62e9aa8] DEBUG - Request: [127.0.0.1:53336 (Loopback)] GET /channels/all (2 live) GZIP Signed-in Token (beckyboop123)
Jul 21, 2021 18:03:11.001 [0x7fa6d71aa8] DEBUG - Completed: [127.0.0.1:53336] 200 GET /channels/all (2 live) GZIP 0ms 387 bytes
Jul 21, 2021 18:03:11.010 [0x7fa62e9aa8] DEBUG - Request: [127.0.0.1:53338 (Loopback)] GET /library/sections (2 live) GZIP Signed-in Token (beckyboop123)
Jul 21, 2021 18:03:11.012 [0x7fa6d94aa8] DEBUG - Completed: [127.0.0.1:53338] 200 GET /library/sections (2 live) GZIP 2ms 876 bytes
Jul 21, 2021 18:03:11.018 [0x7fa62e9aa8] DEBUG - Request: [127.0.0.1:53340 (Loopback)] GET /channels/all (2 live) GZIP Signed-in Token (beckyboop123)
Jul 21, 2021 18:03:11.018 [0x7fa6d94aa8] DEBUG - Completed: [127.0.0.1:53340] 200 GET /channels/all (2 live) GZIP 0ms 387 bytes
Does anyone have any suggestions? Thanks in advance!