openssl command hangs

Viewed 18014

The following request to openssl hangs

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

Any idea what the problem could be?

3 Answers

In a Linux system, probably you simply miss to add "-new" to tell OpenSSL to generate a new certificate request

Related