Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rabbitmq-plugins(1) [debian man page]

RABBITMQ-PLUGINS(1)						 RabbitMQ Service					       RABBITMQ-PLUGINS(1)

NAME
rabbitmq-plugins - command line tool for managing RabbitMQ broker plugins SYNOPSIS
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. It must be run by a user with write permissions to the RabbitMQ configuration directory. Some plugins depend on others to work correctly. rabbitmq-plugins traverses these dependencies and enables all required plugins. Plugins listed on the rabbitmq-plugins command line are marked as explicitly enabled; dependent plugins are marked as implicitly enabled. Implicitly enabled plugins are automatically disabled again when they are no longer required. COMMANDS
list [-v] [-m] [-E] [-e] [pattern] -v Show all plugin details (verbose). -m Show only plugin names (minimal). -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. Each plugin is prefixed with a status indicator - [ ] to indicate that the plugin is not enabled, [E] to indicate that it is explicitly enabled, and [e] to indicate that it is implicitly enabled. If the optional pattern is given, only plugins whose name matches pattern are shown. enable {plugin ...} plugin One or more plugins to enable. Enables the specified 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. EXAMPLES
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 RabbitMQ plugins. rabbitmq-plugins enable rabbitmq_shovel rabbitmq_management This command enables the shovel and management plugins and all their dependencies. rabbitmq-plugins disable amqp_client This command disables amqp_client and all plugins that depend on it. AUTHOR
The RabbitMQ Team <info@rabbitmq.com> RabbitMQ Server 06/22/2012 RABBITMQ-PLUGINS(1)

Check Out this Related Man Page

Nagios::Plugin::Config(3pm)				User Contributed Perl Documentation			       Nagios::Plugin::Config(3pm)

NAME
Nagios::Plugin::Config - read nagios plugin .ini style config files SYNOPSIS
# Read given nagios plugin config file $Config = Nagios::Plugin::Config->read( '/etc/nagios/plugins.ini' ); # Search for and read default nagios plugin config file $Config = Nagios::Plugin::Config->read(); # Access sections and properties (returns scalars or arrayrefs) $rootproperty = $Config->{_}->{rootproperty}; $one = $Config->{section}->{one}; $Foo = $Config->{section}->{Foo}; DESCRIPTION
Nagios::Plugin::Config is a subclass of the excellent Config::Tiny, with the following changes: o Repeated keys are allowed within sections, returning lists instead of scalars o Write functionality has been removed i.e. access is read only o Nagios::Plugin::Config searches for a default nagios plugins file if no explicit filename is given to "read()". The current standard locations checked are: /etc/nagios/plugins.ini /usr/local/nagios/etc/plugins.ini /usr/local/etc/nagios /etc/opt/nagios/plugins.ini /etc/nagios-plugins.ini /usr/local/etc/nagios-plugins.ini /etc/opt/nagios-plugins.ini To use a custom location, set a "NAGIOS_CONFIG_PATH" environment variable to the set of directories that should be checked. The first "plugins.ini" or "nagios-plugins.ini" file found will be used. SEE ALSO
Config::Tiny, Nagios::Plugin AUTHORS
This code is maintained by the Nagios Plugin Development Team: <http://nagiosplug.sourceforge.net>. COPYRIGHT and LICENCE Copyright (C) 2006-2007 by Nagios Plugin Development Team This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-12-03 Nagios::Plugin::Config(3pm)
Man Page