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 -v -E -e pattern -v Show all plugin details. -E Show only explicitly enabled plugins. -e Show only explicitly or implicitly enabled plugins. 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, on one line each. rabbitmq-plugins list -v This command lists all the plugins available. rabbitmq-plugins list -v management This command lists all the plugins available, but does not display plugins whose name does not contain "management". rabbitmq-plugins list -e rabbit This command lists all implicitly or explicitly enabled rabbit plugins. 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.