无法在 git bash 中生成新的 CSR
Cannot generate a new CSR in git bash
我正在尝试在 Get Https For Free
上生成 SSL
我在 git bash(git 版本 2.9.3.windows.2,mingw64)上进行了后续操作,但卡在了 步骤 2、证书签名请求。
我在
之后输入了命令
openssl req -new -sha256 -key domain.key -subj "/" -reqexts SAN -config <(cat /d/Git/usr/ssl/openssl.cnf <(printf "[SAN]\nsubjectAltName=DNS:dev.xn--p89al22awxc7t2ajoa.com,DNS:dev.stocktalk.kr"))
但是,一个错误让我很烦。
这是错误。有什么问题,如何才能成功生成?
error on line -1 of /proc/3028/fd/63
7656:error:02001003:system library:fopen:No such process:bss_file.c:175:fopen('/proc/3028/fd/63','rb')
7656:error:2006D080:BIO routines:BIO_new_file:no such file:bss_file.c:178:
7656:error:0E078072:configuration file routines:DEF_LOAD:no such file:conf_def.c:195:
如果 openssh 配置的标准输入重定向不起作用,请尝试以下解决方法:
- 在其他地方复制
/d/Git/usr/ssl/openssl.cnf
- 在该新文件上编辑它(或应用您的
sed
)
直接在您的 openssh 命令中使用该文件:
openssl req -new -sha256 -key domain.key -subj "/" -reqexts SAN -config new_edited_file
关于错误 Error Loading request exception section SAN
,OP Minkyu Kim reports following "Multi-Domain SSL Setup with “Subject Alternative Names”",添加:
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = www.example.com
DNS.2 = example.com
我正在尝试在 Get Https For Free
上生成 SSL我在 git bash(git 版本 2.9.3.windows.2,mingw64)上进行了后续操作,但卡在了 步骤 2、证书签名请求。
我在
之后输入了命令openssl req -new -sha256 -key domain.key -subj "/" -reqexts SAN -config <(cat /d/Git/usr/ssl/openssl.cnf <(printf "[SAN]\nsubjectAltName=DNS:dev.xn--p89al22awxc7t2ajoa.com,DNS:dev.stocktalk.kr"))
但是,一个错误让我很烦。
这是错误。有什么问题,如何才能成功生成?
error on line -1 of /proc/3028/fd/63
7656:error:02001003:system library:fopen:No such process:bss_file.c:175:fopen('/proc/3028/fd/63','rb')
7656:error:2006D080:BIO routines:BIO_new_file:no such file:bss_file.c:178:
7656:error:0E078072:configuration file routines:DEF_LOAD:no such file:conf_def.c:195:
如果 openssh 配置的标准输入重定向不起作用,请尝试以下解决方法:
- 在其他地方复制
/d/Git/usr/ssl/openssl.cnf
- 在该新文件上编辑它(或应用您的
sed
) 直接在您的 openssh 命令中使用该文件:
openssl req -new -sha256 -key domain.key -subj "/" -reqexts SAN -config new_edited_file
关于错误 Error Loading request exception section SAN
,OP Minkyu Kim reports
subjectAltName = @alt_names
[ alt_names ]
DNS.1 = www.example.com
DNS.2 = example.com