Some Redis tricks Link to heading
- To be able to access a redis server remotely change
bind 127.0.0.1
tobind 0.0.0.0
in/etc/redis/redis.conf
- Command to connect to server remotely with redis-cli:
redis-cli -h 83.182.52.176 -p 6379
, (h)ost is an example, (p)ort is redis default port and can be changed.