RabbitMQ Server
The RabbitMQ Team <info@rabbitmq.com>
rabbitmq-plugins
1
RabbitMQ Service
rabbitmq-plugins
command line tool for managing a RabbitMQ broker plugins
rabbitmq-plugins
command
command options
Description
rabbitmq-plugins is a command line tool for
managing RabbitMQ broker plugins. It allows one to enable,
disable and browse plugins. Note that it must be run by a user
with write permissions to the RabbitMQ configuration directory.
Commands
list -c pattern
-c
List plugins compactly.
pattern
Pattern to filter the plugin names by.
Lists available plugins, their versions, dependencies
and descriptions.
If the optional pattern is given, only plugins whose
name mathes pattern are shown.
For example:
rabbitmq-plugins list
This command lists all the plugins available.
rabbitmq-plugins list -c
This command lists all the plugins available, on one line each.
rabbitmq-plugins list -c management
This command lists all the plugins available, on one
line each, but does not display plugins whose name does
not contain "management".
enable plugin ...
plugin
One or more plugins to enable.
Enables the specified plugins and all their
dependencies.
For example:
rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management
This command enables the shovel and
management plugins and all their
dependencies.
disable plugin ...
plugin
One or more plugins to disable.
Disables the specified plugins and all plugins that
depend on them.
For example:
rabbitmq-plugins disable amqp_client
This command disables amqp_client and
all plugins that depend on it.