XAMPP - 未配置会话缓存 [提示:SSLSessionCache]
Posted
技术标签:
【中文标题】XAMPP - 未配置会话缓存 [提示:SSLSessionCache]【英文标题】:XAMPP - Session Cache is not configured [hint: SSLSessionCache] 【发布时间】:2013-05-14 16:32:14 【问题描述】:当我尝试使用 XAMPP 启动 Apache 服务器时,它主要显示以下内容:
[Apache] Check the "/xampp/apache/logs/error.log" file
[Apache] and the Windows Event Viewer for more clues
我检查了错误日志,它说:
"Session Cache is not configured"
完整的日志如下:
[ssl:warn] [pid 5008:tid 316] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[mpm_winnt:notice] [pid 5008:tid 316] AH00455: Apache/2.4.3 (Win32) OpenSSL/1.0.1c php/5.4.7 configured -- resuming normal operations
[mpm_winnt:notice] [pid 5008:tid 316] AH00456: Server built: Aug 18 2012 12:41:37
[core:notice] [pid 5008:tid 316] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
[mpm_winnt:notice] [pid 5008:tid 316] AH00418: Parent: Created child process 1400
[ssl:warn] [pid 1400:tid 324] AH01873: Init: Session Cache is not configured [hint: SSLSessionCache]
[mpm_winnt:notice] [pid 1400:tid 324] AH00354: Child: Starting 150 worker threads.
【问题讨论】:
【参考方案1】:找到解决办法:
这里是如何摆脱 XAMPP 中的 SSLSessionCache 消息的说明
1) 打开文件\xampp\apache\conf\httpd.conf
2) 在 LoadModule 区域的某处添加以下行:
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
3) 保存文件
4) 现在打开文件\xampp\apache\conf\extra\httpd-ssl.conf
5) 在第 70 行添加该行
SSLSessionCache "shmcb:logs/ssl_scache(512000)"
6) 保存文件
7) 重启 Apache
【讨论】:
对我来说最后一块拼图 - 非常感谢(FWIW,我使用的是 WAMP 而不是 XAMPP)。 我的不工作我不知道为什么。LoadModule socache_shmcb_module modules/mod_socache_shmcb.so #LoadModule speling_module modules/mod_speling.so LoadModule ssl_module modules/mod_ssl.so
,Include conf/extra/httpd-ssl.conf
,最后是SSLSessionCache "shmcb:C:/wamp64/bin/apache/apache2.4.27/logs/ssl_scache(512000)"
。我错过了什么。总是出现同样的错误。【参考方案2】:
我和你有同样的问题, 就我而言,我已经安装了 sql server 2008 r2。
你只需要在 service.msc 中停止服务
stop all **SQL Service** or maybe one of them
【讨论】:
以上是关于XAMPP - 未配置会话缓存 [提示:SSLSessionCache]的主要内容,如果未能解决你的问题,请参考以下文章