I can ping pong Redis on the server:
# redis-cli ping PONG
But remotely, I got problems:
$ src/redis-cli -h REMOTE.IP ping
Open the file at location /etc/redis.conf
/etc/redis.conf
Comment out bind 127.0.0.1
bind 127.0.0.1
Restart Redis:
sudo systemctl start redis.service
Disable Firewalld:
systemctl disable firewalld
Stop Firewalld:
systemctl stop firewalld
Then try:
redis-cli -h 192.168.0.2(ip) -a redis(username)