Plex setup

Questions about Plex.
Post Reply
smoore
Posts: 7
Joined: Fri May 30, 2025 1:33 pm
Gender:
Great Britain

Plex setup

Post by smoore »

Hi All

I'm at the final stage of YAMS configuration, and trying to set Plex up.

I can't seem to be able to connect to the server, that I know is running because I'm logged in to it!

Connecting to Plex using firefox directly from the YAMS machine and logging in with my plex account just shows my existing plex server which is on another machine on the same network.

Even if I shut that machine down the plex setup won't let me connect to the new server.

I've probably not explained myself well, but I'm probably doing something wrong somewhere - any idea?

Many thanks,

Simon

User avatar
rogs
Site Admin
Posts: 365
Joined: Mon Oct 23, 2023 12:53 pm
Location: Montevideo, Uruguay
Gender:
Contact:
Uruguay

Re: Plex setup

Post by rogs »

Hey @smoore!

Did you follow the first steps on the Plex configuration? Plex is kinda tricky to configure the first time https://yams.media/config/plex/#first-steps

Cheers!

Roger.

YAMS Creator

E: roger (at) rogs.me. Fuck you, email bots.
W: https://rogs.me
gpg: curl -sL https://rogs.me/rogs.txt | gpg --import
fingerprint: ADDF BCB7 8B86 8D93 FC4E 3224 C7EC E9C6 C36E C2E6


Also, I love cats :mrgreen:

Pirate jet, pirate jet
smoore
Posts: 7
Joined: Fri May 30, 2025 1:33 pm
Gender:
Great Britain

Re: Plex setup

Post by smoore »

Hi Roger

Yes I tried that but at no point do I get the screen where I setup the server.

And somehow I've done something that now means nobody can connect to my existing Plex server so need to get that sorted quickly before family start complaining!

smoore
Posts: 7
Joined: Fri May 30, 2025 1:33 pm
Gender:
Great Britain

Re: Plex setup

Post by smoore »

And now my Plex library is back online without me doing anything!

Maybe I should think about Jellyfish while I'm testing stuff out so I don't disrupt my current Plex setup?

User avatar
rogs
Site Admin
Posts: 365
Joined: Mon Oct 23, 2023 12:53 pm
Location: Montevideo, Uruguay
Gender:
Contact:
Uruguay

Re: Plex setup

Post by rogs »

To be honest, if you can, just ditch Plex. Jellyfin is way better and Plex keeps getting into trouble with the community.

YAMS Creator

E: roger (at) rogs.me. Fuck you, email bots.
W: https://rogs.me
gpg: curl -sL https://rogs.me/rogs.txt | gpg --import
fingerprint: ADDF BCB7 8B86 8D93 FC4E 3224 C7EC E9C6 C36E C2E6


Also, I love cats :mrgreen:

Pirate jet, pirate jet
addoodi
Posts: 1
Joined: Sat Jun 14, 2025 9:16 pm
Gender:
Saudi Arabia

Re: Plex setup

Post by addoodi »

I had the same issue while setting up Yams for the first time today.
What I found while examining docker logs plex:
**** Server is unclaimed, but no claim token has been set ****

Went to https://docs.linuxserver.io/images/dock ... ariables-e and found that I would need to claim the server by adding the env variable PLEX_CLAIM=
The claim token can be obtained by going to the url https://plex.tv/claim (note: the token expires in 4 minues)
I edited the docker-compose.yaml file inside /opt/yams and added the env variable and my token as such:

Code: Select all

 plex:
    image: lscr.io/linuxserver/${MEDIA_SERVICE}
    container_name: ${MEDIA_SERVICE}
    network_mode: host # plex
    environment:
      - PUID=${PUID}
      - PGID=${PGID}
      - VERSION=docker
      - PLEX_CLAIM=claim-xx-xxxxxxx-xxxxxxxxx #This is where you input your claim token

then ran yams restart and it worked. Maybe this will help someone and would appreciate any pointers if there is a better way to do this.

Post Reply