Hi, I am using following steps to create Ca & server certificate :
1. Create CA certificate shell> *openssl genrsa 2048 > ca-key.pem* shell> *openssl req -new -x509 -nodes -days 1000 \* *-key ca-key.pem > ca-cert.pem* 2. Create server certificate shell> *openssl req -newkey rsa:2048 -days 1000 \* *-nodes -keyout server-key.pem > server-req.pem* shell> *openssl x509 -req -in server-req.pem -days 1000 \* *-CA ca-cert.pem -CAkey ca-key.pem -set_serial 01 > server-cert.pem* Now, the certificates get created without any error. But when i run openssl s_server i get following error : unable to load server certificate private key file 4174:error:0906D06C:PEM routines:PEM_read_bio:no start line:pem_lib.c:644:Expecting: ANY PRIVATE KEY Are the steps correct? Thanks, Kane