213 字
1 分钟
How to Install RabbitMQ Plugins
How to Install RabbitMQ Plugins
Installing
rabbitmq_delayed_message_exchangeandamqp_client
View Local Plugins#
# rabbitmq-plugins list Configured: E = explicitly enabled; e = implicitly enabled | Status: * = running on rabbit@7f153b30f57e |/[ ] rabbitmq_amqp1_0 3.6.14[ ] rabbitmq_auth_backend_ldap 3.6.14[ ] rabbitmq_auth_mechanism_ssl 3.6.14[ ] rabbitmq_consistent_hash_exchange 3.6.14[ ] rabbitmq_event_exchange 3.6.14[ ] rabbitmq_federation 3.6.14[ ] rabbitmq_federation_management 3.6.14[ ] rabbitmq_jms_topic_exchange 3.6.14[E*] rabbitmq_management 3.6.14[e*] rabbitmq_management_agent 3.6.14[ ] rabbitmq_management_visualiser 3.6.14[ ] rabbitmq_mqtt 3.6.14[ ] rabbitmq_random_exchange 3.6.14[ ] rabbitmq_recent_history_exchange 3.6.14[ ] rabbitmq_sharding 3.6.14[ ] rabbitmq_shovel 3.6.14[ ] rabbitmq_shovel_management 3.6.14[ ] rabbitmq_stomp 3.6.14[ ] rabbitmq_top 3.6.14[ ] rabbitmq_tracing 3.6.14[ ] rabbitmq_trust_store 3.6.14[e*] rabbitmq_web_dispatch 3.6.14[ ] rabbitmq_web_mqtt 3.6.14[ ] rabbitmq_web_mqtt_examples 3.6.14[ ] rabbitmq_web_stomp 3.6.14[ ] rabbitmq_web_stomp_examples 3.6.14[ ] sockjs 0.3.4Install the amqp_client Plugin#
# rabbitmq-plugins enable amqp_clientPlugin configuration unchanged.
Applying plugin configuration to rabbit@7f153b30f57e... nothing to do.Install the rabbitmq_delayed_message_exchange Plugin#
# rabbitmq-plugins enable rabbitmq_delayed_message_exchangeError: The following plugins could not be found: rabbitmq_delayed_message_exchangeFrom the command output above, you can see that the
rabbitmq_delayed_meaage_exchangeplugin is not installed and needs to be downloaded and installed first.
Download rabbitmq_delayed_meaage_exchange#
Download URL: http://www.rabbitmq.com/community-plugins.html
# linux:wget https://dl.bintray.com/rabbitmq/community-plugins/3.6.x/rabbitmq_delayed_message_exchange/rabbitmq_delayed_message_exchange-20171215-3.6.x.zip# unzip it to/usr/lib/rabbitmq/lib/rabbitmq_server-version/plugins/rabbitmq_delayed_message_exchange-20171201-3.7.x.ezReinstall the Plugin#
# rabbitmq-plugins enable rabbitmq_delayed_message_exchangeError: The following plugins could not be found: rabbitmq_delayed_message_exchangeReference
Link: https://blog.csdn.net/youjin/article/details/82586888 How to Install RabbitMQ Plugins
https://catcat.blog/en/rabbitmq-how-to-install-plugins.html