Luke 42285 Posted Wednesday at 03:45 PM Posted Wednesday at 03:45 PM 5 hours ago, renefw said: How is this link supposed to help me? I pinged @sa2000to jump in and provide his expertise.
sa2000 702 Posted Wednesday at 05:21 PM Posted Wednesday at 05:21 PM (edited) On 04/04/2026 at 10:15, renefw said: Do you mean via SSH terminal? I don't even know how to debug. what Luke meant was running the script command lines manually in an ssh terminal session So you would login and then do cd /share/SSL-Certificate So in that folder if there is a new certificate crt file it would use it So assuming there is a valid crt file you need to pick up, you would execute the next command manually in the ssh session and see what gets output back as there may be clues You are still in this directory following the cd (note - the orifinal script was referencing this directory " cd /etc/config/QcloudSSLCertificate/cert" you would execute manually this command line in the ssh session openssl pkcs12 -export -out emby.p12 -inkey key -in cert -passout pass: you would have your password for the certificate after the "pass:" This should create a new "emby.p12" file (adding a note from the original script notes: Quote if you are not root/admin user you'll need to put sudo before the command Edited Wednesday at 05:26 PM by sa2000
sa2000 702 Posted Wednesday at 05:34 PM Posted Wednesday at 05:34 PM Just adapting the command to what you have cd /share/SSL-Certificate suggest you rename the exisiting emby.p12 file - to check that a new emby.p12 is created by the next command openssl pkcs12 -export -out emby.p12 -inkey SSLprivatekey.key -in SSLcertificate.crt -passout pass:mykey
renefw 2 Posted 2 hours ago Posted 2 hours ago Please tell me how to do that? I don't know how! Do you mean via SSH terminal? I don't even know how to debug.
sa2000 702 Posted 26 minutes ago Posted 26 minutes ago (edited) 1 hour ago, renefw said: Do you mean via SSH terminal? I don't even know how to debug. sorry - may be i missed reading some posts. I assumed that if you knew how to run the script then you would have known how to login through ssh So let us start first by getting putty downloaded and installed on a PC Then you need to enable SSH on the QNAP NAS - see qnap info here How Do I Access My QNAP NAS using ssh After you enable ssh, you can logon to the QNAP NAS through ssh using putty and login with QNAP admin account Once logged in then you can cd to the directory and execute commands and see what errors / info gets displayed To rename the emby.p12 you just execute the linux command for doing that - you can do this after the "cd" to the directory A web search would show that you need to do something like "mv emby.p12 emby.p12.old" so assuming this is the path, command would be first cd /share/SSL-Certificate then either mv emby.p12 emby.p12.old" or sudo mv emby.p12 emby.p12.old" depending on login priviliges then openssl pkcs12 -export -out emby.p12 -inkey SSLprivatekey.key -in SSLcertificate.crt -passout pass:mykey where mykey is your certificate password to set Edited 24 minutes ago by sa2000
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now