Thank you, you solve my problem on making a unix socket work on Redis.
I have no clue why the permissions need to be 777
. But the comment above unixsocketperm
did show an example of the permissions of 700
.
I also did a test which are changing the permissions of the parent folder back to default permission chmod 650 /var/run/redis/
and set the owner and group back to default ownerships as well chown redis:redis /var/run/redis/
. The extra test works as expected!
So I think the only concern is that redis.sock
is the only permissions issue.
Thanks!!