Closed leotu closed 2 years ago
@leotu ~are you encoding the username / password special chars in URL format?~ If that still doesn't work can you privately provide a test account for me to test and debug the issue?
@pmlopes
I create new account for your
String username = URLEncoder.encode("demo", StandardCharsets.UTF_8);
String password = URLEncoder.encode("demo123~X", StandardCharsets.UTF_8);
String connectionString = "redis://" + username + ":" + password + "@redis-14177.c11.us-east-1-2.ec2.cloud.redislabs.com:14177/0";
// "redis://demo:demo123%7EX@redis-14177.c11.us-east-1-2.ec2.cloud.redislabs.com:14177/0"
@leotu I'm running the test with the latest git code and I can connect and execute commands such as INFO
. I believe the issue was fixed on ac116b7bb7999593e787804a76cd55fb2291c3c6 and 22ce171a1682cf086b7160b9294f53db000db713
Great !
I face this problem when that I run Quarkus version "2.12.2.Final", but it includes "vertx-redis-client" version "4.3.2". (redis-reference)
Questions
Log in to Redis instead of using the default user, use the specified username connected failed
For example: app.redislabs.com Would create specified username & password
Version
Context
Redis.createClient
Maybe some problem at:
Redis ACL (https://redis.io/docs/manual/security/acl/)
Steps to reproduce
Extra Info