k8s环境下rabbitmq安装社区插件:rabbitmq_delayed_message_exchange

怎么在k8s环境下的rabbitmq安装社区版插件:rabbitmq_delayed_message_exchange

在你的rabbit-value.yaml中加入以下行,然后使用helm重新安装(最好把pvc也删了重新安装(如果你的密码变化了的话) 减少出错概率)

bash 复制代码
## @param plugins List of default plugins to enable (should only be altered to remove defaults; for additional plugins use `extraPlugins`)
##
plugins: "rabbitmq_management rabbitmq_peer_discovery_k8s"

## @param queue_master_locator Changes the queue_master_locator setting in the rabbitmq config file
##
queue_master_locator: min-masters

## @param communityPlugins List of Community plugins (URLs) to be downloaded during container initialization
## Combine it with extraPlugins to also enable them.
##
communityPlugins: "https://github.com/rabbitmq/rabbitmq-delayed-message-exchange/releases/download/v4.0.2/rabbitmq_delayed_message_exchange-4.0.2.ez"
## @param extraPlugins Extra plugins to enable (single string containing a space-separated list)
## Use this instead of `plugins` to add new plugins
##
extraPlugins: "rabbitmq_auth_backend_ldap rabbitmq_delayed_message_exchange"
## Clustering settings
##
bash 复制代码
helm install  my-rabbit-dev bitnami/rabbitmq -f rabbit-value.yaml -n yournamespace

过程中踩坑

1 rabbitmq_delayed_message_exchange是社区版的plugin 所以要在communityPlugins加入,而且这里要加入的是能直接下载的链接

bash 复制代码
communityPlugins: "https://github.com/rabbitmq/rabbitmq-delayed-message-exchange/releases/download/v4.0.2/rabbitmq_delayed_message_exchange-4.0.2.ez"

如果不是下载地址而是网页链接 我安装过程中没报错 探针也过了,但是可以去容器的/opt/bitnami/rabbitmq/plugins

目录下查看,根本没有这个插件。

2 我一开始是把他当正常插件使用了

只写了extraPlugins,没在communityPlugins写内容,会报错:

bash 复制代码
cannot_read_enabled_plugins_file,"/opt/bitnami/rabbitmq/etc/rabbitmq/enabled_plugins

{1,erl_parse,"bad term"}},{rabbit,start,[normal,[]]}}


readiness probe failed: % total % received % xferd average speed time time time current dload upload total spent left speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (7) failed to connect to 127.0.0.1 port 15672 after 0 ms: couldn't connect to server

等一些列奇怪的错误,原因应该就是rabbitmq_delayed_message_exchange 找不到 也没在communityPlugins那里添加,

bash 复制代码
communityPlugins: ""
## @param extraPlugins Extra plugins to enable (single string containing a space-separated list)
## Use this instead of `plugins` to add new plugins
##
extraPlugins: "rabbitmq_auth_backend_ldap rabbitmq_delayed_message_exchange"

要在communityPlugins那里加上下载地址 同时在extraPlugins 加上 以启用他 其实仔细读注释 人家早就说了 Combine it with extraPlugins to also enable them.

bash 复制代码
## @param communityPlugins List of Community plugins (URLs) to be downloaded during container initialization
## Combine it with extraPlugins to also enable them.
##
communityPlugins: "https://github.com/rabbitmq/rabbitmq-delayed-message-exchange/releases/download/v4.0.2/rabbitmq_delayed_message_exchange-4.0.2.ez"
## @param extraPlugins Extra plugins to enable (single string containing a space-separated list)
## Use this instead of `plugins` to add new plugins
##
extraPlugins: "rabbitmq_auth_backend_ldap rabbitmq_delayed_message_exchange"
## Clustering settings

参考:stackoverflow
github
rabbitmq community plugin

https://artifacthub.io/packages/helm/bitnami/rabbitmq/15.0.3

相关推荐
ILL11IIL43 分钟前
k8s的pod管理及优化
云原生·容器·kubernetes
笑洋仟2 小时前
docker的overlay2目录占用磁盘空间很大,清理办法
运维·docker·容器
木雷坞2 小时前
2026 年 5 月国内可用 Docker 镜像源列表与配置方法
运维·docker·容器
埃菲尔铁桶5 小时前
踩坑一周|OpenSandbox + AI Agent 冷启动从 2 分钟降到 1 秒,我们做了这些事
kubernetes
小小的木头人7 小时前
Docker Compose 镜像检测脚本(支持自动扫描 + 手动输入 YAML)
运维·docker·容器
沧州刺史7 小时前
k8s 拉取镜像时,请求提前断开(EOF)导致拉取失败
云原生·容器·kubernetes
牛奶咖啡137 小时前
k8s容器编排技术实践——k8s的介绍及其整体运行架构
云原生·kubernetes·k8s是什么?有啥用?·k8s的应用场景·k8s的优缺点边界·k8s的重要概念·k8s的整体运行架构
码农阿豪8 小时前
Docker 部署 XiuXianGame 文字修仙游戏:极空间 NAS 上随时挂机刷资源
游戏·docker·容器
小坏讲微服务9 小时前
小白搭建K8S集群0基础教程实战
docker·云原生·容器·kubernetes
xingfujie9 小时前
Ubuntu K8s 1.28 kubeadm 高可用集群部署实战
linux·运维·服务器·docker·kubernetes