在httpd.conf里边开启#Ininclude conf/extra/httpd-ssl.conf 重启apache就报错apache日志文件
[Thu May 10 11:53:55.515054 2018] [core:warn] [ pid 6988:tid 312] AH00098: pid 文件 D:/software/phpstudy/PHPTutorial/Apache/logs/httpd.pid 被覆盖 -- 之前 Apache 运行的不干净关闭?
[5 月 10 日星期四 11:53: 55.609059 2018] [mpm_winnt:notice] [pid 6988:tid 312] AH00455: Apache/2.4.23 (Win32) OpenSSL/1.0.2j mod_fcgid/2.3.9 配置 -- 恢复正常操作
[周四五月10 11:53:55.609059 2018] [mpm_winnt:notice] [pid 6988:tid 312] AH00456:服务器构建:2016 年 7 月 1 日 16:42:20
[2018 年 5 月 10 日星期四 11:53:55.609059] [核心:通知] [pid 6988:tid 312] AH00094:命令行:'D:\\ software \\ phpstudy \\ PHPTutorial \\ Apache \\ bin \\ httpd.exe -d D:/software/phpstudy/PHPTutorial /Apache'
[Thu May 10 11:53:55.611059 2018] [mpm_winnt:notice] [pid 6988:tid 312] AH00418:父级:创建子进程 7948
[Thu May 10 11:53:56.432106 2018] [mpm_winnt:notice] [pid 7948:tid 328] AH00354: Child: 启动 150 个工作线程。
[2018 年 5 月 10 日星期四 12:48:20.615807 ] [mpm_winnt:crit] [pid 7948:tid 328] AH02538:子进程:父进程突然退出。子进程正在结束
a游侠儿.evil2018-06-05 04:14:29
其次是你可以安装了VMware,VMware占用了443端口,这里禁用教程https://blog.csdn.net/bwlab/article/details/46953569
a游侠儿.evil2018-06-05 02:25:40
phpStudy 不要安装在c盘!!!!
httpd-ssl.conf 示例:
Listen 443
SSLPassPhraseDialog builtin
SSLSessionCache "shmcb:logs/ssl_scache(51 2000)"
SSLSessionCacheTimeout 300
# 虚拟主机的常规设置
DocumentRoot "e:/www/mysite" # 改
ServerName www.mysite.com:443 #改
ServerAdmin admin@example.com
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile "conf/ssl/mysite_server. crt" #改
SSLCertificateKeyFile "conf/ssl/mysite_server.key" #改
SSLOptions +StdEnvVars
<目录 "D:/phpStudy/PHPTutorial/Apache/cgi-bin">
SSLOptions +StdEnvVars
BrowserMatch ".*MSIE.*"
nokeepalive ssl-unclean-shutdown
downgrade-1.0 force-response-1.0
# 每服务器日志记录:
# 自定义 SSL 日志文件的主页。当您想要基于虚拟主机的
# 紧凑无错误 SSL 日志文件时,请使用此选项。
CustomLog "D:/phpStudy/PHPTutorial/Apache/logs/ssl_request.log" #改
"%t %h % {SSL_PROTOCOL}x %{SSL_CIPHER}x "%r" %b"
;