Just exactly how do you shutdown Redis on a Mac OS X server?
I tried doing it via the CLI but this doesn't work:
$ redis-cli
127.0.0.1:6379> shutdown
not connected> quit
I also tried executing the redis-cli command using "sudo" but that didn't make a difference.
I tried killing the process but it just restarts itself with a new PID:
$ sudo kill -9 <pid>
I've checked the "requirepass" setting in /usr/local/etc/redis.conf but no password is being set.
I also checked this question, this, and this but none of them yielded a solution. You'd think the Redis documentation would tell how to do this. Very frustrating.
Thanks.