Hello,
I have just started out with Redis. I have a basic C program using hiredis to write and fetch keys to and from the Redis server running on my Linux machine.
I could successfully get my program to run when redis server and my client program were running on localhost.
However, I wanted to deploy my program onto a cluster node where the redis server runs on one node and client runs on another.
To do so, I have commented out the bind statement in redis.conf and running the Redis server as a daemon process.
On running my client, I see that it is unable to connect to the server and the connection is refused.
PS: I have read about Redis Cluster, but for now I just wanted to get my basic setup running before I try to use Redis Cluster.