centos 安装ssl证书报错“SSLSessionCache: 'shmcb' session cache not supported”解决方法 centos安装https证书时,安装成功重启apache时,报错 ```c AH00526: Syntax error on line 79 of /alidata/httpd/conf/extra/httpd-ssl.conf: SSLSessionCache: 'shmcb' session cache not supported (known names: ). Maybe you need to load the appropriate socache module (mod_socache_shmcb?). ```  原因是由于没有启用mod_socache_shmcb拓展模块。 打开conf/httpd.conf。 把LoadModule socache_shmcb_module modules/mod_socache_shmcb.so前的备注去了即可。 