Parallels / rq-dashboard

Flask-based web front-end for monitoring RQ queues
http://python-rq.org/
Other
1.44k stars 328 forks source link

Error while running rq-dashboard via command line #475

Open pyjads opened 10 months ago

pyjads commented 10 months ago

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior: I started redis server using following docker-compose.yml

version: '3'
services:
  redis:
    image: docker.io/redis:7.2.3
    command: ["redis-server", "/etc/redis/redis.conf"]
    volumes:
      - .:/etc/redis
    ports:
        - "6379:6379"

redis.conf looks like below

requirepass 123456

I am trying to use rq-dashboard to connect to the redis using below commands locally

pip install rq-dashboard

rq-dashboard --password 123456 -u redis://localhost:6379 --debug -v --bind 0.0.0.0

I get below error/logs:

* Running on all addresses (0.0.0.0)
 * Running on http://127.0.0.1:9181
 * Running on http://10.236.44.184:9181
Press CTRL+C to quit
 * Restarting with stat
RQ Dashboard version 0.6.7
 * Debugger is active!
 * Debugger PIN: 584-485-599

127.0.0.1 - - [20/Nov/2023 23:34:00] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [20/Nov/2023 23:34:00] "GET /favicon.ico HTTP/1.1" 304 -

Why do I get Connection Error in the browser. The logs are also not much of help. Could anyone look into this. Thank you in advance. Additional context

Add any other context about the problem here.

twoyoung commented 2 weeks ago

same problem here.