Check if radish is working as a teamredis-cli ping
Answerpingpong
Make sure your PHP configuration contains the correct settings for the Redis extension. Check whether the php.ini
file specifies the correct path to redis.so
and other necessary configurations.
I have adjusted the Php.ini file as follows.
before fixing
session.save_path = "tcp://localhost:6379"
adjusted
session.save_path = "tcp://redis:6379"
Thanks.