I'm a bit of a novice on Linux but I've been running plex on centos for more then a year without issues during the upgrades.
Nothing is getting logged but if I try and run /usr/lib/plexmediaserver/Plex\ Media\ Server manually I get the error:
/usr/lib/plexmediaserver/Plex Media Server: error while loading shared libraries: libminiupnpc.so.10: cannot open shared object file: No such file or directory.
The libminiupnpc.so.10 file is in the /usr/lib/plexmediaserver folder.
I've tried removing and reinstalling the RPM with no effect on the problem.
My startup service file is here:
/etc/systemd/system/multi-user.target.wants/plexmediaserver.service
it's the default settings:
[Unit]
Description=Plex Media Server for Linux
After=network.target
[Service]
Environment="PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=/var/lib/plexmediaserver/Library/Application Support"
Environment=PLEX_MEDIA_SERVER_HOME=/usr/lib/plexmediaserver
Environment=PLEX_MEDIA_SERVER_MAX_PLUGIN_PROCS=6
Environment=PLEX_MEDIA_SERVER_TMPDIR=/tmp
Environment=LD_LIBRARY_PATH=/usr/lib/plexmediaserver
Environment=LC_ALL=en_US.UTF-8
Environment=LANG=en_US.UTF-8
ExecStartPre=/bin/sh -c '/usr/bin/test -d "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}" || /bin/mkdir -p "${PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR}"'
ExecStart=/usr/lib/plexmediaserver/Plex\x20Media\x20Server
Type=simple
User=plex
Group=plex
Restart=on-failure
RestartSec=5
StartLimitInterval=60s
StartLimitBurst=3
[Install]
WantedBy=multi-user.target
Any help is greatly appreciated: