How To Convert An RSA Private Key to PEM Format
1 |
openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa.pem |
1 |
openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa.pem |
https://help.ubuntu.com/community/EC2APITools https://help.ubuntu.com/community/Repositories/CommandLine#Adding_the_Universe_and_Multiverse_Repositories As root in /root: vim /etc/apt/sources.list ## Added to the bottom: deb http://us.archive.ubuntu.com/ubuntu/ hardy multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ hardy multiverse deb http://us.archive.ubuntu.com/ubuntu/ hardy-updates multiverse deb-src http://us.archive.ubuntu.com/ubuntu/ hardy-updates multiverse apt-get update apt-get install sun-java5-jre apt-get install unzip wget http://s3.amazonaws.com/ec2-downloads/ec2-api-tools-1.3-34128.zip unzip ec2-api-tools-1.3-34128.zip export EC2_HOME=/root/ec2-api-tools-1.3-34128 export PATH=$PATH:$EC2_HOME/bin mkdir .pem Copy downloaded X.509 private key and cert into […]
Create the server key from your original private key by removing the pass-phase:
1 |
openssl rsa -in key.pem -out server.key |
These are the files that NetSol provided me in the download .zip file (domain name changed to protect the innocent):
1 2 3 4 |
AddTrustExternalCARoot.crt NetworkSolutionsAddTrustEVServerCA.crt NetworkSolutionsEVServerCA.crt WWW.YOURDOMAIN.COM.crt |
Network Solutions does not make it easy on you – in the install docs they tell you there is yet […]
I was getting this error:
1 |
Failed to save SSL options : The SSL private key file /etc/webmin/miniserv.pem does not exist or does not contain a PEM format key |
Edit the file /etc/webmin/miniserv.conf and add:
1 2 |
ssl=1 ssl_redirect=1 |