mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
457 B
Plaintext
26 lines
457 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# rabbitmq-plugins
|
|
|
|
> Manage RabbitMQ plugins.
|
|
> More information: <https://www.rabbitmq.com/docs/man/rabbitmq-plugins.8.html>.
|
|
|
|
- List plugins:
|
|
|
|
`rabbitmq-plugins list`
|
|
|
|
- Enable a plugin:
|
|
|
|
`rabbitmq-plugins enable {{plugin}}`
|
|
|
|
- Disable a plugin:
|
|
|
|
`rabbitmq-plugins disable {{plugin}}`
|
|
|
|
- Enable a plugin and disable the rest:
|
|
|
|
`rabbitmq-plugins set {{plugin}}`
|