It's not a secret that Redis service is a really great backend caching service. Normally people use that via TCP. It's fast and reliable. However if you do benchmark via unixsocket you will see that it will double amount of requests per second (of course depend on your server but much much faster than TCP). Redis via unixsocket is the best setup to go... however people using CageFS in Cloudlinux will struggle with permissions and they won't be able to connect to unixsocket. Here is the solution!
Step 1: change redis config to use unixsocket (still keeping TCP). In /etc/redis.conf uncomment and change lines:
# Unix socket.
#
# Specify the path for the Unix socket that will be used to listen for
# incoming connections. There is no default, so Redis will not listen
# on a unix socket when not specified.
#
unixsocket /var/run/redis/redis.sock
unixsocketperm 755
Step 2: restart redis service
systemctl restart redis
Step 3: add the path to redis.sock in the CageFS configuration:
cat /etc/cagefs/cagefs.mp
# Lines, which start with "/", specify mounts, that are common for all users:
/var/run/redis
Step 4: update CageFS
cagefsctl --force-update && cagefsctl -M
Updating users ...
Updating statuses of users ...
Enjoy Redis via unixsocket. If you configure it on your WordPress via LSCache plugin in Cache > Object pick Redis. Host will be a path to redis.sock ( /var/run/redis/redis.sock ). Port set to 0.
Hmm I tried your instructions, but somehow (on Litespeed webserver) I get a 'permission denied'. Even though I get a 'PONG' result when running either this as root:
redis-cli -s /var/run/redis/redis.sock
or as a user:
cagefsctl -e usernamehere && redis-cli -s /var/run/redis/redis.sock
Maybe you know the solution? Thanks!