How to install rabbitmq management plugin (rabbitmq-plugins)

前端 未结 6 736
盖世英雄少女心
盖世英雄少女心 2021-01-30 00:06

Brief: Is there a way to install rabbitmq-plugins via a ubuntu package?

Details:

I have rabbitmq running ok in my ubuntu system, and now I\'m trying to monitor w

相关标签:
6条回答
  • 2021-01-30 00:25

    Once you installed erlang and rabbitmq-server you can find rabbitmq-plugin installed in the following directory:

    /usr/lib/rabbitmq/bin/rabbitmq-plugins
    

    then, do a symlink like this,

    sudo ln -s /usr/lib/rabbitmq/bin/rabbitmq-plugins /usr/local/bin/rabbitmq-plugins
    

    after this you are done.

    For plugin management, see the below file.

    sudo vim /etc/rabbitmq/enabled_plugins
    
    0 讨论(0)
  • 2021-01-30 00:36

    I exactly faced this problem on Ubuntu 18.04.1 and was not able to enable the rabbitmq_management.

    In my case mistake I did was to instal erlang after rabbitmq-server so it was not working fine. (not fully sure why but was getting exact same problem)

    As solution I just uninstalled the rabbitmq-server, installed the rabbitmq-server again and all worked just fine below are the complete steps if can help others.

    sudo apt-get remove rabbitmq-server
    sudo apt-get install rabbitmq-server
    sudo systemctl enable rabbitmq-server
    sudo systemctl start rabbitmq-server
    sudo systemctl status rabbitmq-server (to check status only)
    sudo rabbitmq-plugins enable rabbitmq_management
    sudo rabbitmqctl add_user admin admin
    sudo rabbitmqctl set_user_tags admin administrator
    
    0 讨论(0)
  • 2021-01-30 00:37

    The rabbitmq-plugins script (and the whole concept of bundling plugins with the server release) was only introduced in RabbitMQ 2.7.0. If you want to keep using 2.5.0 then you should download the necessary plugin binaries from http://www.rabbitmq.com/releases/plugins/, drop them in /usr/lib/rabbitmq/lib/rabbitmq_server-2.5.0/plugins/ and restart.

    (The necessary binaries for management are amqp_client, mochiweb, webmachine, rabbitmq_mochiweb, rabbitmq_management_agent and rabbitmq_management.)

    If that sounds like a pain (well, this is why we changed it in 2.7.0!), you should consider upgrading to 2.7.1. You don't need to build from source - we make .deb packages available and have an apt repository - see http://www.rabbitmq.com/install-debian.html

    0 讨论(0)
  • 2021-01-30 00:37

    If you are using Ubuntu 12.04

    Steps are:--

    My rabbitmq server version

    # dpkg -l rabbitmq-server
    Desired=Unknown/Install/Remove/Purge/Hold
    | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
    |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
    ||/ Name                Version             Description
    +++-===================-===================-======================================================
    ii  rabbitmq-server     2.7.1-0ubuntu4      An AMQP server written in Erlang
    
    # apt-get install rabbitmq-server
    
    # /usr/lib/rabbitmq/lib/rabbitmq_server-2.7.1/sbin/rabbitmq-plugins list
    [ ] amqp_client                       0.0.0
    [ ] eldap                             0.0.0-git
    [ ] erlando                           0.0.0
    [ ] mochiweb                          1.3-rmq0.0.0-git
    [ ] rabbitmq_auth_backend_ldap        0.0.0
    [ ] rabbitmq_auth_mechanism_ssl       0.0.0
    [ ] rabbitmq_consistent_hash_exchange 0.0.0
    [ ] rabbitmq_federation               0.0.0
    [ ] rabbitmq_jsonrpc                  0.0.0
    [ ] rabbitmq_jsonrpc_channel          0.0.0
    [ ] rabbitmq_jsonrpc_channel_examples 0.0.0
    [ ] rabbitmq_management               0.0.0
    [ ] rabbitmq_management_agent         0.0.0
    [ ] rabbitmq_management_visualiser    0.0.0
    [ ] rabbitmq_mochiweb                 0.0.0
    [ ] rabbitmq_shovel                   0.0.0
    [ ] rabbitmq_shovel_management        0.0.0
    [ ] rabbitmq_stomp                    0.0.0
    [ ] rabbitmq_tracing                  0.0.0
    [ ] rfc4627_jsonrpc                   0.0.0-git
    [ ] webmachine                        1.7.0-rmq0.0.0-hg
    

    Now to enable the web UI plugin

    # /usr/lib/rabbitmq/lib/rabbitmq_server-2.7.1/sbin/rabbitmq-plugins enable rabbitmq_management
    The following plugins have been enabled:
      mochiweb
      webmachine
      rabbitmq_mochiweb
      amqp_client
      rabbitmq_management_agent
      rabbitmq_management
    

    Plugin configuration has changed. Restart RabbitMQ for changes to take effect.

    root@ubuntu:/usr/lib/rabbitmq/lib/rabbitmq_server-2.7.1/sbin# service rabbitmq-server restart
    Restarting rabbitmq-server: SUCCESS
    rabbitmq-server
    

    .

    root@ubuntu:/usr/lib/rabbitmq/lib/rabbitmq_server-2.7.1/sbin# /usr/lib/rabbitmq/lib/rabbitmq_server-2.7.1/sbin/rabbitmq-plugins list
    
    [e] amqp_client                       0.0.0
    [ ] eldap                             0.0.0-git
    [ ] erlando                           0.0.0
    [e] mochiweb                          1.3-rmq0.0.0-git
    [ ] rabbitmq_auth_backend_ldap        0.0.0
    [ ] rabbitmq_auth_mechanism_ssl       0.0.0
    [ ] rabbitmq_consistent_hash_exchange 0.0.0
    [ ] rabbitmq_federation               0.0.0
    [ ] rabbitmq_jsonrpc                  0.0.0
    [ ] rabbitmq_jsonrpc_channel          0.0.0
    [ ] rabbitmq_jsonrpc_channel_examples 0.0.0
    [E] rabbitmq_management               0.0.0
    [e] rabbitmq_management_agent         0.0.0
    [ ] rabbitmq_management_visualiser    0.0.0
    [e] rabbitmq_mochiweb                 0.0.0
    [ ] rabbitmq_shovel                   0.0.0
    [ ] rabbitmq_shovel_management        0.0.0
    [ ] rabbitmq_stomp                    0.0.0
    [ ] rabbitmq_tracing                  0.0.0
    [ ] rfc4627_jsonrpc                   0.0.0-git
    [e] webmachine                        1.7.0-rmq0.0.0-hg
    

    Check the Web UI

    on your browser try http://localhost:55672 (or http://localhost:15672 for newer versions of rabbitmq) & login via default user and password which is guest:guest & you will be able to see it all.

    Hope it helps.

    0 讨论(0)
  • 2021-01-30 00:43

    I also faced the same problem while installing the rabbitmq in ubuntu os.

    I have written a tutorial for this how to install rabbitmq in ubuntu. If you are still facing the issue then you can refer that tutorial. Hope this will help you.

    0 讨论(0)
  • 2021-01-30 00:45

    rabbitmq-plugins enable rabbitmq_management, this command is for recent versions of rabbitmq, rabbitmq_management is included in rabbitmq 2.8.5, it actually activates 6 plugins, which in older versions are downloads to RABBITMQ_PLUGINS_DIR, which set in script rabbitmq-server. so it is easier to upgrade your rabbitmq.

    here are 6 plugins : Activating RabbitMQ plugins ... 6 plugins activated:

    • amqp_client-0.0.0
    • mochiweb-2.3.1-rmq0.0.0-gitd541e9a
    • rabbitmq_management-0.0.0
    • rabbitmq_management_agent-0.0.0
    • rabbitmq_mochiweb-0.0.0
    • webmachine-1.9.1-rmq0.0.0-git52e62bc
    0 讨论(0)
提交回复
热议问题