Azurel
Silver Pleskian
- Server operating system version
- AlmaLinux 8.10 (Cerulean Leopard)
- Plesk version and microupdate number
- Plesk Obsidian 18.0.68#2
Hello,
in phpinfo() I see that redis is available. (Its installed by plesk and enabled in php settings.)
Redis Version: 6.1.0
Redis Sentinel Version: 1.0
But how do I access the redis server? I used:
connect() throw "Connection establishment rejected" (translated). I can't find a useful article on this. Can anyone here help me?
Change 127.0.0.1 to localhost not helped.
in phpinfo() I see that redis is available. (Its installed by plesk and enabled in php settings.)
Redis Version: 6.1.0
Redis Sentinel Version: 1.0
But how do I access the redis server? I used:
if (class_exists(\Redis::class)) {
$this->redis = new \Redis();
$this->redis->connect('127.0.0.1', 6379);
}
connect() throw "Connection establishment rejected" (translated). I can't find a useful article on this. Can anyone here help me?
Change 127.0.0.1 to localhost not helped.