Server Version#: 1.26.0.5715
I’ve installed Plex into a Docker Container (via Portainer). I initially could not claim the server, due to not being able to resolve plex.tv. I switched to bridge mode and I then got a NOT AUTHORISED error. At this time I could see my current (working) Plex Server in the Web UI, as well as the new Plex Server, which I needed to claim.
I grabbed a new Claim Token, updated the Portainer docker-compose and re-deployed and then the new server disappeared from the Web UI.
I can still enter the Server GUID into the URL to attempt to access the new server, but it gives me “Not authorized
You do not have access to this server”
I’ve also tried and SSH Tunnel ssh msc@192.168.1.13 -L 8888:localhost:32400 , the result is the same. “Not Authorised”.
How do I get the Plex Server back???
version: "2.1"
services:
plex:
image: lscr.io/linuxserver/plex
container_name: plex
network_mode: bridge
ports: ["32400:32400"]
environment:
- PUID=5001
- PGID=2001
- VERSION=docker
- PLEX_CLAIM=claim-RANDOMCODE
- HOSTNAME=NAS001
volumes:
- /mnt/local/int002/System/Docker/Plex/Library:/config
- /mnt/local/int001/Media/Video/TV:/TV
- /mnt/local/int001/Media/Video/Movies:/Movies
restart: unless-stopped