相信很多朋友进行安装悟空crm的时候 提示错误:
[0] RedisException in Redis.php line 56
Connection refused
不知道怎么样处理是吧~~~
$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']);}