Skip to content

Instantly share code, notes, and snippets.

@pbkwee
Last active November 6, 2017 01:53
Show Gist options
  • Save pbkwee/e3ca29081dc0fcebdfbdea17a88b4f04 to your computer and use it in GitHub Desktop.
Save pbkwee/e3ca29081dc0fcebdfbdea17a88b4f04 to your computer and use it in GitHub Desktop.
Making a cloned Plex media server unique on a Mac
Plex has some ids per server that should be unique per plex server. If you clone a Plex setup (e.g. via settin up a new mac with a timemachine backup from another Plex server) you need to manually change some values.
For Windows it would be like:
https://forums.plex.tv/discussion/comment/1170859/#Comment_1170859
On a Mac you can use the defaults command.
Show the values:
# defaults read com.plexapp.plexmediaserver
Clear out the old unique identifiers:
# defaults delete com.plexapp.plexmediaserver AnonymousMachineIdentifier
# defaults delete com.plexapp.plexmediaserver MachineIdentifier
# defaults delete com.plexapp.plexmediaserver ProcessedMachineIdentifier
# defaults delete com.plexapp.plexmediaserver PlexOnlineHome
To read/change the 'friendly name'
# defaults read com.plexapp.plexmediaserver FriendlyName
# defaults write com.plexapp.plexmediaserver FriendlyName newplexservernamehere
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment