Search code examples
linuxsslopenssldigital-certificate

openssl command hangs


The following request to openssl hangs

openssl req -key server.key -out server.csr 

Any idea what the problem could be?


Solution

  • 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.