我使用mod_ssl
在CentOS7上安装了Apache2.4当我使用httpd –k start
时,我可以启动httpd。
但是我无法通过systemctl start httpd.service
启动httpd,并在ssl_error_log
下面显示错误消息。
Pass phrase incorrect for key of mydomain:443
SSLPassPhraseDialog exec:/etc/httpd/conf.d/cert/ssl_pass.sh
在/etc/httpd/conf.d/ssl_conf
文件中。
ssl_pass.sh
文件包含用于回显密码的shell脚本,它是可执行的。
#!/bin/sh
echo "myPassPhrase"
如果我按systemctl
启动httpd,是否有任何特殊配置?