I read the documentation at http://www.redis.io , opened the redis.conf file to configure redis-server , it is located at /etc/redis/redis.conf
$ sudo subl /etc/redis/redis.conf
Instead of a sublime editor, you can use the editor of your choice, namely. nano, vi, emacs, vim, gedit.
In this file, I uncommented #bind 127.0.0.1 . Therefore, instead of 0.0.0.0:6379 now its 127.0.0.1:6379
Reboot the Redis server
$ sudo service redis-server restart
It will indicate that the server is ready to accept connections through port 6379
This will raise your server. For more detailed configuration and settings, you can monitor this redis server in Ubuntu.
aruns source share