I currently have two plex accounts - lets call it old@gmail.com (legacy lifetime subscription) and new@domain.
Server A is registered to new@domain and Server B is registered to old@domain
It’s time for a cleanup and I want to shut down Server B and keep only Server A.
So I wonder if the following would be doable:
Logout new@domain from Server B
Login on Server B with old@domain
Delete new@domain Plex account
(wait 30 days)
Change old@domain email address to new@domain
Would this work?
Any better way of doing it?
What would be the possible problems I can find if I do this?
No major issues at least.
There might be some discrepancy with the local “watched” status versus the one in your plex.tv account. (if you have the synchronization activated)
But if you do it exactly like you described above (and in the same order), then you should be good.
@OttoKerner quick one, I had one Managed Account (my kid) and foolished thought that was “local” but apparently that’s tied with the plex account, not the server itself.
Anyway I can migrate the data to the new plex account so she doesn’t loose all her watch list and such?
Thanks
EDIT: now fixed with some SQL
UPDATE media_part_settings SET account_id = <new_id> WHERE account_id = <old_id>;
UPDATE metadata_item_settings SET account_id = <new_id> WHERE account_id = <old_id>;
UPDATE metadata_item_views SET account_id = <new_id> WHERE account_id = <old_id>;
UPDATE metadata_item_accounts SET account_id = <new_id> WHERE account_id = <old_id>;
UPDATE statistics_bandwidth SET account_id = <new_id> WHERE account_id = <old_id>;
UPDATE statistics_media SET account_id = <new_id> WHERE account_id = <old_id>;