Install Redis on Arch Linux
Step 1 – Install
pacman -S --noconfirm redis
systemctl enable --now redis
Step 2 – Verify
redis-cli ping # PONG
Step 3 – Bind and password (/etc/redis/redis.conf)
bind 127.0.0.1 ::1
requirepass StrongRedisPass!
Restart, then:
redis-cli -a StrongRedisPa...