So I'm trying to use my redis from another machine (just like here). It seems like I have to specify the ips from which redis is accessible. Following prior suggestions, I created a configuration file:
bind 0.0.0.0 127.0.0.1
which I load when running the server: redis-server redis.config
The issue is that I am getting the following error:
[4323] 25 Jan 14:12:00.770 # Creating Server TCP listening socket 0.0.0.0:6379: bind: Address already in use
I tried it on two machines and got the same error on both of them. Any ideas where I'm going wrong?