千家信息网

mongo启动报错

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,show collections;uncaught exception: error{"$err": "not master and slaveok=false","code":13435}进一步查看
千家信息网最后更新 2025年01月19日mongo启动报错

show collections;

uncaught exception: error{"$err": "not master and slaveok=false","code":13435}


进一步查看mongo日志:


unauthorized: not authorized on admin to execute command { replsetgetstatus: 1.0,for shell: 1.0}


通过日志查看了mongo的conf参数文件的配置:

取消了replset,keyFile的参数,恢复正常。


在secondary模式下,是不允许读写操作的(错误提示:not master and slave false),临时处理:rs.slave.OK()


备注:因为异常中断导致重启生成子进程报错,通常情况都是在db_data目录中存在了一个mongo加锁的文件,后缀名为lock,直接remove。




0