Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mongodump assertion 17369

Tags:

mongodb

Folks, When running a mongodump command, I get the following error:

assertion: 17369 Backing up users and roles is only supported for clusters with auth schema versions 1 or 3, found: 5

Any suggestions on how to address? MongoDB v2.8

like image 411
Cmag Avatar asked Dec 27 '14 04:12

Cmag


1 Answers

Your version of mongodump might be to old. Running a v2.6 client with a v2.8+ server (with the new auth scheme) will give this error.

In my case I was running MongoDB v3.0 on the server, trying to make a dump with MongoDB v2.6 client. After upgrading mongodb-org-tools to v3.0 on my laptop, the problem went away.

like image 167
Arnold Daniels Avatar answered Oct 27 '22 08:10

Arnold Daniels