Closed justmark closed 3 years ago
Could you try a simple hello world with redis to be sure the problem is the password protected connection?
Something like
require "redis"
redis = Redis.new(...)
pp! redis.keys("*")
Hi Hugopl,
Yeah, I'm getting an auth error.
redis.keys("*") # => Unhandled exception: NOAUTH Authentication required. (Redis::Error)
Mark
So the issue seems to be related with your redis setup or the redis shard, not sidekiq.
I'm closing this, since it seems to be a problem in your redis setup, not in sidekiq.
I have a Sidekiq Pro server running on the same host that I'm attempting to do some Crystal development on. The server has a password as well.
I'm running Crystal 0.36.1 currently. My Sidekiq.cr:
When I start up the system, I get the following output:
If I change the password to an incorrect password, then the server output above is identical. I do have a worker in Crystal, which does have data in the queue (via Sidekiq Monitor application on the Ruby side).
My worker is:
The queue name above is correct, and it does have data queued up. Regardless of what I try, I cannot seem to get it to connect. I also started it up with the verbose flag:
Any thoughts as to what might be wrong?
Thanks.