RabbitMQ启动报错:Error during startup: {error, {schema_integrity_check_failed,

报错信息如下:

复制代码
Error during startup: {error,
                          {schema_integrity_check_failed,
                              [{table_attributes_mismatch,rabbit_user,
                                   [username,password_hash,tags,
                                    hashing_algorithm,limits],
                                   [username,password_hash,tags,
                                    hashing_algorithm]},
                               {table_attributes_mismatch,rabbit_vhost,
                                   [virtual_host,limits,metadata],
                                   [virtual_host,limits]},
                               {table_attributes_mismatch,
                                   rabbit_durable_queue,
                                   [name,durable,auto_delete,exclusive_owner,
                                    arguments,pid,slave_pids,sync_slave_pids,
                                    recoverable_slaves,policy,operator_policy,
                                    gm_pids,decorators,state,policy_version,
                                    slave_pids_pending_shutdown,vhost,options,
                                    type,type_state],
                                   [name,durable,auto_delete,exclusive_owner,
                                    arguments,pid,slave_pids,sync_slave_pids,
                                    recoverable_slaves,policy,operator_policy,
                                    gm_pids,decorators,state,policy_version,
                                    slave_pids_pending_shutdown,vhost,
                                    options]},
                               {table_attributes_mismatch,rabbit_queue,
                                   [name,durable,auto_delete,exclusive_owner,
                                    arguments,pid,slave_pids,sync_slave_pids,
                                    recoverable_slaves,policy,operator_policy,
                                    gm_pids,decorators,state,policy_version,
                                    slave_pids_pending_shutdown,vhost,options,
                                    type,type_state],
                                   [name,durable,auto_delete,exclusive_owner,
                                    arguments,pid,slave_pids,sync_slave_pids,
                                    recoverable_slaves,policy,operator_policy,
                                    gm_pids,decorators,state,policy_version,
                                    slave_pids_pending_shutdown,vhost,
                                    options]},
                               {table_missing,rabbit_index_route},
                               {table_missing,
                                   rabbit_node_maintenance_states}]}}

我查阅资料大概有三种可能:

1、你的rabbitMQ的版本信息和erlang的版本信息对应不上

2、你的安装路径中存在中文或空格

3、还有一种,删除一下路径中的文件,然后重新启动rabbitMQ就可以了,我的就属于第三种:

但是暂时我也不太清楚要删除这个文件,如果有知道的朋友可以再评论区留言,我们共同学习~

相关推荐
Tapdata6 分钟前
实时物化视图的新路径:从传统 Join 到跨源实时查询
数据库
optimistic_chen9 分钟前
【Java EE进阶 --- SpringBoot】Mybatis - plus 操作数据库
数据库·spring boot·笔记·java-ee·mybatis·mybatis-plus
Murphy_lx12 分钟前
Linux系统--信号(4--信号捕捉、信号递达)陌生概念篇
linux·运维·服务器
Asuncion00720 分钟前
Docker核心揭秘:轻量级虚拟化的革命
服务器·开发语言·docker·云原生
FJW02081439 分钟前
关系型数据库大王Mysql——DDL语句操作示例
数据库·mysql
言之。40 分钟前
Chroma 开源的 AI 应用搜索与检索数据库(即向量数据库)
数据库·人工智能·开源
来旺1 小时前
互联网大厂Java面试全解析及三轮问答专项
java·数据库·spring boot·安全·缓存·微服务·面试
焱焱枫1 小时前
Linux疑难杂症诊断利器:深入解析 fuser 命令
linux·运维·服务器
深思慎考1 小时前
RabbitMQ 入门:基于 AMQP-CPP 的 C++ 实践指南与二次封装
开发语言·c++·分布式·rabbitmq·api
Mr.45671 小时前
RabbitMQ消息传输中Protostuff序列化数据异常的深度解析与解决方案
rabbitmq