How to check whether the Redis server is running

Chris Harrison picture Chris Harrison · Mar 26, 2012 · Viewed 57.8k times · Source

How to check whether the Redis server is running?

If it's not running, I want to fallback to using the database.

I'm using the FuelPHP framework, so I'm open to a solution based on this, or just standard PHP.

Answer

Hassan Azimi picture Hassan Azimi · Jul 8, 2017

You can use command line to determine if redis is running:

redis-cli ping

you should get back

PONG

that indicates redis is up and running.