I’m on 5.3.7-2-MANJARO using plex-media-server-plexpass from the AUR. I have my system set up with separate root and home partitions, and realized the metadata in /var/lib/plex/Plex Media Server/ is gobbling up my limited room in the root partition. So I moved the ‘Plex Media Server’ folder to my home folder and ran
systemctl stop plexmediaserver.service
ln -s '/home/user/Plex Media Server' '/var/lib/plex/Plex Media Server'
chown -R plex:plex '/var/lib/plex/Plex Media Server'
systemctl start plexmediaserver.service
But when I go to the web interface, I just get “Server unreachable”. What am I doing wrong here?
For anyone coming to this from an Arch based distro using a package from the AUR, you must manually change the build files before building.
I used the Plex Pass package and had to edit the plexmediaserver.conf.d file and change the PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR= line to /home/plexdata. Then you have to get the new sha256sum of that file, replace it in the PKGBUILD file or it won’t build. Build the package, finally you have to add your user to the plex group and it should work.