169

我通过 expressjs 使用 node.js
我尝试将帐户存储到会话。所以,我尝试测试在expressjs中使用带有代码的会话

var RedisStore = require('connect-redis')(express);
app.use(express.bodyParser());
app.use(express.cookieParser());
app.use(express.session({ secret: "keyboard cat", store: new RedisStore }));

但我得到了错误Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED
请帮我解决这个问题

4

18 回答 18

251

安装 redis 后,从终端输入:

redis-server

你将运行 redis

于 2012-06-21T23:16:53.157 回答
73

我用下一个方法解决这个问题:

sudo apt-get install redis-server

然后运行命令确认一切正常:

sudo service redis-server status

输出将是:redis-server is running- 这意味着问题已解决。

于 2015-01-27T06:16:44.670 回答
46

首先在你的系统上安装 redis -

brew install redis

然后启动redis服务器-

redis-server
于 2016-08-03T05:40:27.160 回答
22

我在 Windows 上,必须从这里安装 Redis ,然后运行redis-server.exe​​.

这个 SO question的顶部开始。

于 2015-02-04T02:36:16.953 回答
14

简单的解决方案:

只需点击一次以下推荐并再次重新启动您的服务器

redis-server
于 2018-10-09T09:39:11.277 回答
6

对于那些将 docker 与 docker-compose 和 Typescript 一起使用的人,我的解决方案是

import { RedisClient } from 'redis';

 const pubClient = new RedisClient({ url: 'redis://redis:6379' });

import { createClient } from 'redis';

const pubClient = createClient({ url: 'redis://redis:6379' });

码头工人-compose.yml

version: '3.9'

services:
  main:
    build:
      context: .
      target: development
    ports:
      - ${PORT}:${PORT}
    volumes:
      - ./src:/usr/src/app/src
      - /app/node_modules
    env_file:
      - .env
    command: npm run start:dev
    depends_on:
      - mongo
      - redis
  mongo:
    image: mongo:5.0.2-focal
    volumes:
      - mongo-data:/data/db
  mongo-express:
    image: mongo-express:0.54.0
    ports:
      - 8081:8081
    depends_on:
      - mongo
  redis:
    image: redis:6.2.5-alpine

volumes:
  mongo-data:
于 2021-08-20T04:42:29.893 回答
5

对于 Windows 用户,可以使用 Chocolatey 安装 Redis

choco install redis-64

然后从运行服务器

C:\ProgramData\chocolatey\lib\redis-64\redis-server.exe
于 2018-06-08T08:27:39.667 回答
4

我也有同样的问题,首先我尝试重新启动redis-server,sudo service restart但问题仍然存在。然后我删除redis-serversudo apt-get purge redis-server再次安装它sudo apt-get install redis-server,然后redis再次工作。也值得看看位于这里的 redis 日志/var/log/redis/redis-server.log

于 2014-07-15T13:32:29.017 回答
4

使用 Windows 10? 去这里:https ://docs.microsoft.com/en-us/windows/wsl/wsl2-install

然后跑...

    $ wget https://github.com/antirez/redis/archive/5.0.5.tar.gz <- change this to whatever Redis version you want (https://github.com/antirez/redis/releases)
    $ tar xzf redis-5.0.5.tar.gz
    $ cd redis-5.0.5
    $ make
于 2018-12-09T08:58:53.370 回答
3

我使用 ubuntu 12.04 我通过安装 redis-server 解决了这个问题

ubuntu 12.04 的 redis 服务器安装

一些配置将获得新的 root 权限还列出了其他操作系统的手册

谢谢

于 2014-03-29T04:41:46.297 回答
1

对于 windows 平台,您必须检查是否redis-server在给定的 ip:port 上运行。您可以在安装目录中找到 redis 配置/conf/redis.conf。默认情况下客户端接受127.0.0.1:6379

于 2013-09-21T06:14:31.130 回答
1

我在 MBP 上,安装redis详细信息我的问题已解决。修复了下载、提取和编译 Redis:

$ wget http://download.redis.io/releases/redis-3.0.2.tar.gz

$ tar xzf redis-3.0.2.tar.gz

$ cd redis-3.0.2

$ make

现在编译的二进制文件在 src 目录中可用。

使用以下命令运行 Redis:

$ src/redis-server 
于 2015-06-16T10:46:47.980 回答
1

你必须先安装redis服务器;

您可以按照以下步骤在 mac 上安装 redis 服务器 -

  $ curl -O http://download.redis.io/redis-stable.tar.gz
  $ tar xzvf redis-stable.tar.gz
  $ cd redis-stable
  $ make
  $ make test
  $ sudo make install
  $ redis-server

祝你好运。

于 2018-09-09T06:32:18.850 回答
1

在 ubuntu 的情况下,错误是由于未设置 redis-server。再次安装 redis-server,然后检查状态。

如果没有错误,则会显示如下消息:-

● redis-server.service - 高级键值存储 已加载:已加载(/lib/systemd/system/redis-server.service;已启用;供应商预设:已启用) 活动:自周三 2018-01-17 20 起活动(运行) :07:27 IST;16s 前 Docs: http://redis.io/documentation , man:redis-server(1) Main PID: 4327 (redis-server) CGroup: /system.slice/redis-server.service └─4327 /usr/bin /redis 服务器 127.0.0.1:6379

于 2018-01-17T14:46:01.053 回答
1

对我来说,我在 Ubuntu 18.x 上遇到了这个问题,但我的问题是我的 redis 服务器在 127.0.0.1 上运行,但我发现我需要在我的 IP 地址 xxx.xx.xx.xx 上运行它

我进入我的 Ubuntu 机器并执行了以下操作。

cd /etc/redis/

sudo vim redis.conf

然后我编辑了这部分。

################################## NETWORK #####################################

# By default, if no "bind" configuration directive is specified, Redis listens
# for connections from all the network interfaces available on the server.
# It is possible to listen to just one or multiple selected interfaces using
# the "bind" configuration directive, followed by one or more IP addresses.
#
# Examples:
#
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
#
# ~~~ WARNING ~~~ If the computer running Redis is directly exposed to the
# internet, binding to all the interfaces is dangerous and will expose the
# instance to everybody on the internet. So by default we uncomment the
# following bind directive, that will force Redis to listen only into
# the IPv4 loopback interface address (this means Redis will be able to
# accept connections only from clients running into the same computer it
# is running).le to listen to just one or multiple selected interfaces using
#
# IF YOU ARE SURE YOU WANT YOUR INSTANCE TO LISTEN TO ALL THE INTERFACES
# JUST COMMENT THE FOLLOWING LINE.
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# bind 127.0.0.1 ::1 10.0.0.1
bind 127.0.0.1 ::1 # <<-------- change this to what your iP address is something like (bind 192.168.2.2)

保存,然后重新启动 redis-server。

sudo service redis-server restart或者干脆跑redis-server

于 2020-07-28T22:57:08.897 回答
1

我想也许你是通过源代码安装 redis。如果你需要找到 redis-source-code-path/utils 并运行sudo install_server.sh命令。之后,确保 redis-server 已作为您系统的服务运行 sudo service redis-server status

PS:基于Debian/Ubuntu

于 2016-04-25T07:07:28.020 回答
0

您与 redis 的连接失败。尝试重新启动您的 redis 服务器,然后通过运行以下 3 个命令再次启动您的客户端:

sudo service redis-server restart
redis-server
redis-cli
于 2016-01-20T13:34:18.760 回答
-6

尝试将您的节点升级到最新版本。

sudo npm cache clean -f
sudo npm install -g n
sudo n stable

0.4 版可能无法正常工作。

于 2013-08-07T08:38:40.950 回答