We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I am trying to test my cluster using these ruby clients. But I constantly get the following error:
error Can't reach a single startup node. NOAUTH Authentication required
I have tried:
startup_nodes = [ {:host => "redis-cluster-service", :port => 6379, :password => 'pass'} ] startup_nodes = [ {:host => "redis-cluster-service", :port => 6379, password: 'pass'} ] RedisCluster.new(startup_nodes,32,:timeout => 0.1,:password => 'pass') RedisCluster.new(startup_nodes,32,:timeout => 0.1, password: 'pass') RedisCluster.new(startup_nodes,32,:timeout => 0.1,:auth_pass => 'pass')=
None of them seem to work. Any help with regards to this would be of great help.
Best Shabir
The text was updated successfully, but these errors were encountered:
The example is of the old client code,. After hours of toil I found that the following works:
rc = Redis.new(cluster: startup_nodes,:timeout => 0.1, replica: true, password: 'PASSWORD')
Would be nice if the docs were updated.
Sorry, something went wrong.
No branches or pull requests
Hi,
I am trying to test my cluster using these ruby clients. But I constantly get the following error:
I have tried:
None of them seem to work. Any help with regards to this would be of great help.
Best
Shabir
The text was updated successfully, but these errors were encountered: