redis password required? #1129
Unanswered
JuanJValle
asked this question in
Forums - Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I installed crawl4ai using docker. I am not a docker expert but the container is running and the port mapping is working. When I try http://localhost:port nothing happened. So I tried echo -e "GET / HTTP/1.1\r\nHost: localhost\r\n\r\n" | nc localhost portnumber:
I get this error:
-DENIED Redis is running in protected mode because protected mode is enabled and no password is set for the default user. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions: 1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. 3) If you started the server manually just for testing, restart it with the '--protected-mode no' option. 4) Setup a an authentication password for the default user. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.
My question is how do I run this without hitting this error. Why is redis asking me for a password. I am running Ubuntu 24.04.02 LTS
Beta Was this translation helpful? Give feedback.
All reactions