TennTux
May 2nd, 2007, 04:17 PM
I'm in the process of setting up Apache to use SSL so I got a copy of the community provided OpenSSL help (https://help.ubuntu.com/community/OpenSSL) . I am able to create a Certificate Authority. However, when I get to creating a server certificate I enter the following command.
openssl req -newkey rsa:1024 -keyout fas_tempkey.pem -keyform PEM -out fas_tempreq.pem -outform PEM
As expected I'm asked for a pass-phrase that I enter. And it finishes as expected except that I don't see the fas_tempreq.pem file. I wouldn't worry about this but a couple of steps later under the directions for signing the server certificate with my Certificate Authority I need to run the following command.
openssl ca -in fas_tempreq.pem -out server_crt.pem
However, this fails because fas_tempreq.pem does not exist... ???
Am I missing something?
openssl req -newkey rsa:1024 -keyout fas_tempkey.pem -keyform PEM -out fas_tempreq.pem -outform PEM
As expected I'm asked for a pass-phrase that I enter. And it finishes as expected except that I don't see the fas_tempreq.pem file. I wouldn't worry about this but a couple of steps later under the directions for signing the server certificate with my Certificate Authority I need to run the following command.
openssl ca -in fas_tempreq.pem -out server_crt.pem
However, this fails because fas_tempreq.pem does not exist... ???
Am I missing something?