悟空crm安装搭建 报错[0] RedisException in Redis.php line 56问题处理办法

相信很多朋友进行安装悟空crm的时候 提示错误:

[0] RedisException in Redis.php line 56

Connection refused

不知道怎么样处理是吧~~~

bash 复制代码
            $this->options = array_merge($this->options, $options);
        }
        # redis 密码
        $password = config('cache.password');
        if (!empty($password)) $this->options['password'] = $password;
        $this->handler = new \Redis;
        if ($this->options['persistent']) {
            $this->handler->pconnect($this->options['host'], $this->options['port'], $this->options['timeout'], 'persistent_id_' . $this->options['select']);
        } else {
            $this->handler->connect($this->options['host'], $this->options['port'], $this->options['timeout']);
        }

        if ('' != $this->options['password']) {
            $this->handler->auth($this->options['password']);
        }

        if (0 != $this->options['select']) {
            $this->handler->select($this->options['select']);
        }

问题处理好 打开的悟空CRM系统界面:

不知道如何处理的朋友 可以QQ加我好友 帮忙处理好:

相关推荐
csdndddsd1 个月前
828华为云征文|华为云服务器Flexus X搭建悟空crm管理系统——助力企业云上管理(解决APP Referer校验失败问题)
悟空crm安装搭建·app referer校验失败·华为云服务器安装部署crm系统·悟空crm安装搭建教程·悟空crm二次开发教程·crm悟空部署指导·828华为云flexusx
赢乐5 个月前
Web实时通信的学习之旅:WebSocket入门指南及示例演示
websocket·ws·send·connection·tcp连接·实时双向通信·socket实例