help please.
..................
java -jar wowza-letsencrypt-converter-0.2.jar -v /usr/local/WowzaStreamingEngine/conf/ /etc/letsencrypt/live/
Converting certificates: /etc/letsencrypt/live/ => /usr/local/WowzaStreamingEngine/conf/
Reading simple.site
Read error in simple.site:java.security.spec.InvalidKeySpecException: java.security.InvalidKeyException: Invalid RSA private key
.............
"simple.site" this is an example
It complains your private key is invalid.
Try to check your private key.
openssl rsa -check -in privkey.pem
You should see the following, if not, your private key may be corrupted or needs to be converted to RSA format.
RSA key ok
writing RSA key
openssl rsa -in privkey.pem -text -noout | grep "Private-Key"
Private-Key: (2048 bit, 2 primes)
If you see your private key is encry
pted like this
-----BEGIN ENCRYPTED PRIVATE KEY-----
you need to decrypt it with the following command where test.pem is the decrypted version :
openssl rsa -in privkey.pem -out test.pem
In any way, just look at why your private key is not valid or compatible.