tags:

views:

27

answers:

1

The following command is hanging openssl req -key server.key -out server.csr

Any idea what the problem could be ?

+1  A: 

You need another argument, it expects to read a certificate from standard input. Probably you meant to add -new as a command line argument, or you need to pass an existing certificate on standard in.

Ivo
yes, that is what it was. Thanks.
Prakash Raman