Replies: 2 comments
-
PerfTest is a CLI tool, so any characters that may be treated specially by shells must be treated with extra care in the arguments. Neither RabbitMQ itself nor its client libraries treat |
Beta Was this translation helpful? Give feedback.
0 replies
-
# the password value MUST be enquoted or else the `#` can be interpreted as a comment by the shell
rabbitmqctl add_user "perftest-hash-pwd" "perftest-@-hash-#-pwd"
rabbitmqctl set_permissions "perftest-hash-pwd" ".*" ".*" ".*"
java -jar ./perf-test-2.19.0.jar --uri 'amqp://perftest-hash-pwd:perftest-@-hash-#-pwd@localhost' works on my machine. RabbitMQ's own documentation about seeding users mentions this and other characters in a dedicated section. |
Beta Was this translation helpful? Give feedback.
0 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
I have
#
in password and can't connect to a RabbitMQReproduction steps
#
in passwordamqp://user:#@host:5672/
Expected behavior
Sussecful connect and test
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions