本文介绍了无法通过 XAMPP 生成 SSL 证书的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在尝试生成用于本地测试的 SSL 证书.当我 cd 进入 /xampp/apache/ 并运行 makecert 时,我收到以下错误:

I have been trying to generate a SSL certificate for local testing. When I cd into /xampp/apache/ and run makecert I get the following error:

WARNING: Can't open config file: ./bin/openssl.cnf
...
Error opening Private Key privkey.pem

如何解决?

推荐答案

makecert.bat中openssl.cnf的路径有误.

There is a wrong path to the openssl.cnf in the makecert.bat.

只需编辑 makecert.bat 即可修复路径:

Just edit makecert.bat to fix the path:

set OPENSSL_CONF=./conf/openssl.cnf

这篇关于无法通过 XAMPP 生成 SSL 证书的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-26 02:36