I created an EC2 instance with Apache HTTPD 2.4 with mod_ssl version 2.4.34. I've created a Memcached cluster on AWS ElastiCache version 1.6.17 with encryption in transit.
The goal is to have HTTPD use MemCached with TLS for the SSLSessionCache. However, whenever a request is received, the server logs the following:
vhosts.conf
...
SSLSessionCache memcache:test-memcache.2dr943.cfg.use1.cache.amazonaws.com:11322
...
ssl_error_log
Could not find specified socket in poll list.: AH00790: scache_mc: error setting key 'mod_ssl-session:162534f25cf4152836459039d4c99263a346345e9366230f9a00394f593abcab' with 1447 bytes of data
I can verify the Memcached cluster is accessible and functional by using openssl s_client -connect test-memcache.2dr943.cfg.use1.cache.amazonaws.com:11322
.
It seems HTTPD is unable to connect to the Memcache service with encryption in-transit. Any ideas how to address the issue?