Thread Starter
k199
(@k199)
Thanks for prompt reply.
I went through install instruction again. It turns out its because of my wp_redis constants in wp-config.php is below abs.path wp-setting require.
Thank you
Thread Starter
k199
(@k199)
But I test EC2 to Elasticache connection with this test file in /var/www/html/test.php
<?php
$redis = new Redis();
$redis->connect('<aws_elastic_access_point>', 6379);
$redis->set('test_key', 'test_value');
echo $redis->get('test_key');
?>
When i type in ec2ip/test.php in browser, its showing ‘test_value’, I assume this should be meaning the connection between ec2 and redis is working?