openssl 命令挂起
以下对 openssl
的请求挂起
openssl req -key server.key -out server.csr
知道问题可能是什么吗?
The following request to openssl
hangs
openssl req -key server.key -out server.csr
Any idea what the problem could be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要另一个参数,它期望从标准输入读取证书。可能您打算添加
-new
作为命令行参数,或者您需要在标准中传递现有证书。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.在 Linux 系统中,您可能只是错过了添加“-new”来告诉 OpenSSL 生成新的证书请求
In a Linux system, probably you simply miss to add "-new" to tell OpenSSL to generate a new certificate request
我在 Windows 7 中使用
GitBash
时遇到了同样的问题,经过几个小时的搜索,这解决了我的问题:I had the same issue when using
GitBash
in Windows 7, After hours of search this solved my issue: