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
hey when I try to run the worker, how do I get it to get the redis configuration, because my redis have a password.
QUEUE='*' vendor/bin/resque
PHP Fatal error: Uncaught CredisException: NOAUTH Authentication required. in
The text was updated successfully, but these errors were encountered:
Pass the REDIS_BACKEND eval as well. This variable uses the normal DSN string format (redis://user:pass@host:port).
REDIS_BACKEND
redis://user:pass@host:port
Sorry, something went wrong.
My question: How to connect redis with only password? I try REDIS_BACKEND=redis://pass@host:port but it is not working
You need the : in front of the password.
I try REDIS_BACKEND=redis://:pass@host:port but it is not working
Huh. PHP must need a fake user, then. Resque ignores it.
No branches or pull requests
My question:
hey when I try to run the worker, how do I get it to get the redis configuration, because my redis have a password.
QUEUE='*' vendor/bin/resque
PHP Fatal error: Uncaught CredisException: NOAUTH Authentication required. in
My Environment
The text was updated successfully, but these errors were encountered: