Another possibly helpful note.
Redis can be bound to multiple IPs - that's very helpful when you don't want to open it to entire world (0.0.0.0
) but only make it accessible in local networks.
sudo nano /etc/redis/redis.conf
bind
setting:bind 127.0.0.1 10.0.0.1
sudo service redis-server restart
Now you can easily access redis from other computers in same network, e.g.
redis-cli -h 10.0.0.1