Last active
October 19, 2023 12:16
-
-
Save bsingr/37e9619020ee294556654957d995bfa0 to your computer and use it in GitHub Desktop.
rabbitmq remove amq.gen queues
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USER=admin | |
PASS=a | |
rabbitmqadmin -u "$USER" -p "$PASS" list queues | grep -oP "amq.gen-[\w\-]+" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
USER=admin | |
PASS=a | |
rabbitmqadmin -u "$USER" -p "$PASS" list queues | grep -oP "amq.gen-[\w\-]+" | while read line; do rabbitmqadmin -u "$USER" -p "$PASS" delete queue name=$line; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment