web-dev-qa-db-fra.com

XAMPP - Le cache de session n'est pas configuré [indice: SSLSessionCache]

Lorsque j'essaie de démarrer le serveur Apache avec XAMPP, il indique principalement ce qui suit:

[Apache]   Check the "/xampp/Apache/logs/error.log" file
[Apache]   and the Windows Event Viewer for more clues

J'ai vérifié le journal des erreurs et il est écrit:

"Session Cache is not configured"

Le journal complet est donné ci-dessous:

[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.
13
wakqasahmed

Trouvé une solution:

Voici les instructions pour se débarrasser du message SSLSessionCache dans XAMPP

1) Ouvrez le fichier\xampp\Apache\conf\httpd.conf

2) Dans la zone LoadModule, ajoutez la ligne suivante:

LoadModule socache_shmcb_module modules/mod_socache_shmcb.so

3) Enregistrez le fichier

4) Ouvrez maintenant le fichier\xampp\Apache\conf\extra\httpd-ssl.conf

5) à la ligne 70, ajoutez la ligne

SSLSessionCache "shmcb:logs/ssl_scache(512000)"

6) Enregistrez le fichier

7) Redémarrez Apache

20
wakqasahmed

J'ai le même problème avec vous, Dans mon cas, j'ai installé le serveur SQL 2008 R2.

vous devez juste arrêter le service dans service.msc

stop all **SQL Service** or maybe one of them
0
Bobby Z