1. 插件安装
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    # 插件列表
    rabbitmq-plugins list

    #插件目录
    rabbitmq-plugins directories -s
    # => Plugin archives directory: /path/to/rabbitmq/plugins
    # => Plugin expansion directory: /path/to/node/node-plugins-expand
    # => Enabled plugins file: /path/to/enabled_plugins

    # The first directory in the example above is the 3rd party plugin directory. The second one contains plugins that ship with RabbitMQ and will change as installed RabbitMQ version changes between upgrades.

    # 插件启停
    rabbitmq-plugins enable <plugin-name>
    rabbitmq-plugins disable <plugin-name>