Server Version#: 1.23.4.4805
Player Version#:
<If providing server logs please do NOT turn on verbose logging, only debug logging should be enabled>
My NUC Desktop crashed and CPU board has become unrecoverable, The SSD with the Plex installation was saved and now trying to recover PMS through migration (Linux to Linux w/o Docker).
Original equipment was NUC i7-8850 now on Beelink N100 (this machine only dedicated to PMS purpose)
I setup a new server (with same old-version as original one) in Beelink, linked to my account but:
1.- My Original Server has dissapeared from my account (???)
2.- After installation, and moving Prefererences.xml and the rest of Folders (Media, Metadata, Plug-ins and Plug-in Support) to the new one but it doesn’t launch (!)
What not doing properly? Please, help, advice, support more than welcomed …
I’ve built and removed several new-servers since Monday when I got the new machine and trying to follow procedure to perform migration …
Help more than welcomed
For migration purposes I created a zip file from the original drive with Metadata,Media, Plugins and Plugin-in Support folders, besides preferences.xml …
As I didn’t success with PMS setup, finally I plugged the original drive to the new equipment (read only).
As you can see my account: any clue about what happened with “MINIPC” server? why it is not in the servers list?
The /dev (device) entries are in the left column and the mount directories are in the right column (mount path). Knowing the device node doesn’t help at this point.
I’m going to write this so you can keep safe that which you’ve already done.
I am concerned there is not enough room to perform the copy AND keep both PMS instances safe.
Your current root partition has 134 GB free.
I do not know how big the old PMS is.
Please check it: sudo du -hs /mnt/sdb2/var/lib/plexmediaserver
It it returns a value less than 134 GB then it’s OK to proceed.
# Elevate to root privileges
sudo bash
# Stop Plex
systemctl stop plexmediaserver
# Rename the existing PMS to keep it safe
cd /var/lib/plexmediaserver
mv Library Library-SAVE
# Go to the original PMS directory
cd /mnt/sdb2/var/lib/plexmediaserver
# Transfer it
tar cf - ./Library | (cd /var/lib/plexmediaserver ; tar xf - )
# Change ownership and fix permissions
chown -R plex:plex /var/lib/plexmediaserver/Library
find /var/lib/plexmediaserver/Library -type d -exec chmod 755 {} \;
find /var/lib/plexmediaserver/Library -type f -exec chmod 644 {} \;
# Make certain there is still enough free space on `/`
df -h /
If all this has transpired without error sudo systemctl start plexmediaserver
If, at any point along the way, you get an error (most likely due to space), let me know immediately