0

我在笔记本电脑上运行redis以尝试和学习位于/etc/redis/6379.conf. 你可以在http://paste.ubuntu.com/10678722/看到

我想在我的笔记本电脑上尝试jesque-web,以便安装和尝试我按照其主页上给出的步骤进行操作。

  1. 下载源
    git clone https://github.com/gresrun/jesque-web.git
  2. 编辑配置文件jesque-web-master/src/main/resources/META-INF/spring/redis.properties,其值为
    redis.host=127.0.0.1
    redis.port=6379
    redis.timeout=0
    redis.password=
    redis.namespace=resque
    redis.database=16
  3. 最后启动码头尝试
    mvn -Pjetty-run clean test

在第三步码头服务器启动后,我可以打开http://localhost:8080但页面显示错误 redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

所有错误都可以在http://paste.ubuntu.com/10678929/看到

看起来有一些配置问题。我试图在互联网上找到有关安装和设置 Jesque-Web 的信息以及该错误,但找不到与我相关的任何内容。有人请告诉我我在哪里以及我错过了什么?

4

1 回答 1

0

它在设置
redis.database=o

redis.database=1

jesque-web-master/src/main/resources/META-INF/spring/redis.properties
值 0 或 1 是 redis 中的数据库名称。在 redis 数据库名称是整数值。

于 2015-03-27T10:15:09.153 回答