First, step first. You can simply install it using homebrew
$ brew install redis
After installation you can check that it creates a configutration file at:
/usr/local/etc/redis.conf
Then, you can verify the install as follows:
$ brew info redis
You can start an instance i.e Start Redis server using the configuration file.
$ redis-server /usr/local/etc/redis.conf
By default, it Runs in standalone mode on Port: 6379
Test if Redis server is running.
$ redis-cli ping
It will replu=y you pong!
To Uninstall Redis and its files.
$ brew uninstall redis
What more do you want. So cheers.
:)