RabbitMQ Server
The RabbitMQ Team <info@rabbitmq.com>
rabbitmq-plugin
1
RabbitMQ Service
rabbitmq-plugin
command line tool for managing a RabbitMQ broker plugins
rabbitmq-plugin
command
command options
Description
rabbitmq-plugin is a command line tool for
managing a RabbitMQ broker plugins. It allows you to easily
enable, disable and browse plugins. Note that it must be run by
a user with write permissions to the RabbitMQ installation
directory.
Commands
Local Plugin Management
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-plugin list
This command lists all the plugins available..
rabbitmq-plugin list -c
This command lists all the plugins available, on one line each.
rabbitmq-plugin 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-plugin 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-plugin disable amqp_client
This command disables the amqp_client
and all other plugins that depend on it.