Install Redis on NetBSD 10
Step 1 – Install
pkgin install redis
echo 'redis=YES' >> /etc/rc.conf && service redis start
Step 2 – Verify
redis-cli ping # PONG
Step 3 – Bind and password (/usr/pkg/etc/redis/redis.conf)
bind 127.0.0.1 ::1
requirepass StrongRedisPass!
Restart, then:
redis-cli -a StrongRedisPass! ping
Step 4 – Basic operations
redis-cli -a StrongRedisPass!
> SET mykey "hello"
> GET mykey
> INCR counter
> EXPIRE mykey 3600
> TTL mykey