Following is the recipe to install Redis server on Mac OS using homebrew in a very simple manner:
After installation, you may edit Redis configuration file by going to the path via Mac OS terminal:
1 | $ brew install redis |
After installation, you may edit Redis configuration file by going to the path via Mac OS terminal:
1 | $ /usr/local/etc/redis .conf |
To start Redis Server using configuration file on Mac OS, use following command:
1 | $ redis-server /usr/local/etc/redis .conf |
After running the Redis Server on Mac OS, you can check whether Redis Server is running by opening a new terminal window and enter following command:
1 | $ redis-cli ping |