I have some users on my server that I originally set up as managed users. Now knowing the difference between user types more clearly, I realize I should have set them up as their own users in my home.
I want to create new users for them and move their previous watch data to those new independent accounts.
The best way I can find to do this is the Trakt-sync plugin, but it doesn’t seem like it will sync everything and I have seen mixed reviews (including privacy concerns).
Is there a way to do this working in plex or in the terminal?
I’m not familiar with that thread or those instructions specifically. However, if you are switching users, then an easier approach is to edit the current data to use their new ID.
First create the new user.
If you look in the “accounts” table, you should see the ID’s for the previous managed user and the new one.
Then you want to edit the “metadata_item_settings” table and replace the Account ID from the old to the new. Replace the words below with the actual id number. Repeat for each user.
update metadata_item_settings set account_id = NewID where account_id = OldID;