FJep
Dabbler
- Joined
- Mar 7, 2019
- Messages
- 38
Hi,
today I had and solved some problems when installing Plex via Plugin-GUI in FreeNAS 11.2-RELEASE . I am writing this to help others with similar issues.
Yes I know there are other ways to keep Plex uptodate but when I updated to 11.2 Plex-Plugin was uptodate and I thought I would give the Plugin a try.
I was waiting for an update of PlexMediaServer plugin. Today I saw it in Plugins/Available update raised to version 1.15.2.793_1 (was still 1.14.x). When I looked at Plugins/Installed I found no option to update the plugin and under version was displayed N/A. I resolved the missing version by renaming my plugin from plex to plexmediaserver via SSH.
iocage rename plex plexmediaserver
That renamed /mnt/VOL/iocage/jails/plex to /mnt/VOL/iocage/jails/plexmediaserver but there was a plex.json left as is. So I renamed it it also changed its content to refer to plexmediaserver instead of plex. I am unsure what this file is used for. So feel free to enlighten me.
cd /mnt/VOL/iocage/jails/plexmediaserver
mv plex.json plexmediaserver.json
vi plexmediaserver.json
After that the correct version info was displayed :) but still no possibility to update from GUI, so I again used SSH.
iocage update plexmediaserver
iocage start plexmediaserver
Now Plex was raised to version 1.15.2.793 :) but the plugin already again seems to be outdated and shows an available update for version 1.15.3.876
.
After logging in to Plex I had a new issue. With all options under Settings/Settings I got the message "Server settings are unavailable." (in german "Servereinstellungen sind nicht verfügbar."
The cause was a wrong entry in /mnt/VolZ1/iocage/jails/plexmediaserver/root/usr/local/etc/rc.d/plexmediaserver.
After changing
export LD_LIBRARY_PATH="${SCRIPTPATH}"
to
export LD_LIBRARY_PATH="${SCRIPTPATH}/lib"
all was Ok.
Bye Frank
today I had and solved some problems when installing Plex via Plugin-GUI in FreeNAS 11.2-RELEASE . I am writing this to help others with similar issues.
Yes I know there are other ways to keep Plex uptodate but when I updated to 11.2 Plex-Plugin was uptodate and I thought I would give the Plugin a try.
I was waiting for an update of PlexMediaServer plugin. Today I saw it in Plugins/Available update raised to version 1.15.2.793_1 (was still 1.14.x). When I looked at Plugins/Installed I found no option to update the plugin and under version was displayed N/A. I resolved the missing version by renaming my plugin from plex to plexmediaserver via SSH.
iocage rename plex plexmediaserver
That renamed /mnt/VOL/iocage/jails/plex to /mnt/VOL/iocage/jails/plexmediaserver but there was a plex.json left as is. So I renamed it it also changed its content to refer to plexmediaserver instead of plex. I am unsure what this file is used for. So feel free to enlighten me.
cd /mnt/VOL/iocage/jails/plexmediaserver
mv plex.json plexmediaserver.json
vi plexmediaserver.json
After that the correct version info was displayed :) but still no possibility to update from GUI, so I again used SSH.
iocage update plexmediaserver
iocage start plexmediaserver
Now Plex was raised to version 1.15.2.793 :) but the plugin already again seems to be outdated and shows an available update for version 1.15.3.876
After logging in to Plex I had a new issue. With all options under Settings/Settings I got the message "Server settings are unavailable." (in german "Servereinstellungen sind nicht verfügbar."
The cause was a wrong entry in /mnt/VolZ1/iocage/jails/plexmediaserver/root/usr/local/etc/rc.d/plexmediaserver.
After changing
export LD_LIBRARY_PATH="${SCRIPTPATH}"
to
export LD_LIBRARY_PATH="${SCRIPTPATH}/lib"
all was Ok.
Bye Frank