Server Version#:7
Player Version#:latest
<If providing server logs please do NOT turn on verbose logging, only debug logging should be enabled>
I’ve followed some guides and suggestions by others to fix this issue, but I think it comes down to my previous Plex server that ran off my Windows PC.
I’ve been running Plex with very little issues from my Unraid Server for over 6 months. I realized my password was very weak and old so changed it. Then I got kicked out.
Turns out it’s a common issue and I need to reclaim.
Problem is, I’ve tried deleting the entries in the preferences.xml, uninstalling plex media server app from my pc, clearing out all browser cookies, removing chrome, deleting the app data on the windows pc, removing the old server and browsers as authorized devices (multiple times) etc.
It keeps wanting to pull up the old server. I think it must get the info from Plex’s servers. So I can never get the option to add a server or claim a server.
This is what I get when I try to point it to the path
[root@Mxxxxx /]# [/tmp] # ./UserCredentialReset.sh -p “/mnt/user/appdata/binhex-plex/Plex Media Server/Preferences.xml”
bash: [/tmp]: No such file or directory
this is what I get when I just try to make it executable
chmod: cannot access ‘UserCredentialReset.sh’: No such file or directory
I run Plex on bare metal Ubuntu, so no experience using it on Docker installations.
Looking at the readme, it seems there are two options:
One, run it inside the Docker container, using Docker exec.
Two, run it outside the container, but give it the path to the preferences.xml file.
It looks like you might be using the binhex container, which has limited support, so you may have to use option two.
WRT chmod, cd to the location of the file. With Ubuntu, chmod a+x UserCredentialReset.sh works (as root). You might also try chmod a+x ./UserCredentialReset.sh. AFAIK it is the same on other distributions, Docker, etc.