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。