Skip to content

Instantly share code, notes, and snippets.

@jackfiallos
Created May 23, 2020 16:09
Show Gist options
  • Save jackfiallos/523d98f08b329eea3d1733e92747eb79 to your computer and use it in GitHub Desktop.
Save jackfiallos/523d98f08b329eea3d1733e92747eb79 to your computer and use it in GitHub Desktop.
sudo rabbitmqctl list_connections pid port state user vhost recv_cnt send_cnt send_pend name \
| grep -vP 'Listing|pid' \
| awk '{print "rabbitmqctl close_connection \"" $1 "\" \"manually closing idle connection\"" }' \
| sudo sh
@jackfiallos
Copy link
Author

jackfiallos commented May 23, 2020

also, this may work for specific connections
sudo rabbitmqctl -q close_all_connections name=client_name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment