Plex Update

Status
Not open for further replies.

apb0703

Dabbler
Joined
Oct 14, 2014
Messages
27
I am trying to update Plex using the PMS_Updater. When I run the command

fetch -o PMS_Updater.sh https://raw.githubusercontent.com/mstinaff/PMS_Updater/master/PMS_Updater.sh


I get an error saying:

Certificate verification failed for /C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert SHA2 High Assurance Server CA
51095:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed:/usr/src/secure/lib/libssl/../../../crypto/openssl/ssl/s3_clnt.c:997:
fetch: https://raw.githubusercontent.com/mstinaff/PMS_Updater/master/PMS_Updater.sh: Authentication error



anyone know of a fix?
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
adding the "--no-verify-peer" to fetch should fix this.
 

ericv

Explorer
Joined
Mar 21, 2015
Messages
56
If the above doesn't work you could always just use your browser to get the to file, view the raw code. Copy and paste to a text file and scp it to your server into the correct jails directory.
 

csjjpm

Contributor
Joined
Feb 16, 2015
Messages
126
Hi,
I've just done this myself but my Plex is installed in a JAIL I created myself and not the Plex plugin. Doing it this way the PlexMediaServer path is different so I had to edit the script accordingly. This is what I did:
Code:
fetch -o PMS_Updater.sh https://raw.githubusercontent.com/mstinaff/PMS_Updater/master/PMS_Updater.sh --no-verify-peer
chmod 777 PMS_Updater.sh
nano PMS_Updater.sh


*change the path to plexmediaserver to PMSPARENTPATH="/usr/local/share"
ctrl-O to save ctrl-X to quit

Code:
./PMS_Updater.sh -f -v

This way it shows each step so you can check it is performing the update without issue.

Thanks Joshua for the --no-verify-peer switch.

I hope this helps someone.

Paul
 
Status
Not open for further replies.
Top