My plex server runs on very old hardware (self built HTPC at 2010) under a linux. A long time it was a linux mint and it runs perfect.
Then crashed my system disk and i must reinstall the plex. I’ve done this before without problems but at this time no device found the server or shows an unconnected server.
The plex server has the same name at the same IP in my Network. I’ve install it new on a new linux. but why is this such a problem for the plex “clients”?
My TV plex app, my mobilephone and 2 tablets find the plex after reinstall directly. But on all devices the dashboard is empty. Only on my plex server (in browser) I can see my media.
WHY?
Can anyone say whats the right way to reinstall a plex server on same computer, because hardware defect or os crash.
Same Hostname, same IP, same MAC, same plex account, but new installation.
Backup your library
systemctl stop plexmediaserver
cd /mnt/usbbackup
tar -cpzf library.tar.gz /var/lib/plexmediaserver/library
systemctl start plexmediaserver
Restore library
systemctl stop plexmediaserver
cd /var/lib/plexmediaserver
mv library library.old
cd /mnt/usbbackup
tar -xpzf library.tar.gz -C /
systemctl start plexmediaserver
rm -rf /var/lib/plexmediaserver/library.old