Redis problem

dawidus

New member
Joined
Apr 5, 2019
Messages
4
Hello,
I installed redis by ./build command, now I got Redis management in directadmin but, when I'm trying to "Create new instance" I have this problem:
Warning: file_put_contents(/usr/local/directadmin/plugins/redis_management/data/instances.json): failed to open stream: Permission denied in /usr/local/directadmin/plugins/redis_management/php/Controllers/RedisController.php on line 271
Redis instance is not created, due to an unkown error. Back to list.

Any suggestion how to solve this?
 
It's redis management plugin, not a native DirectAdmin Redis page. I'd suggest removing 3rd party plugin if you have Pro Pack with your license.
 
Had same issue with CloudLinux. Was fixed with:
Bash:
yum install epel-release
yum install redis --enablerepo=epel
systemctl start redis.service
systemctl enable redis
cagefsctl --addrpm redis
cagefsctl --force-update
 
Back
Top