[Fixed]-Django development server showing Error 61 Connection Refused with Redis

29👍

Please make sure if redis is installed on your system and it is running.
To check if redis is running use

 redis-cli

then it will take you to redis console, then if you type ping it will return PONG if redis is running or not.

If you don’t have redis in your system, please visit Redis Quick Start.

For Mac OS X: Go to terminal and type brew install redis.

5👍

This is worked for me:

redis-server

That’s simple

Leave a comment