Advertisement
Guest User

Untitled

a guest
May 28th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # tail -f mongod.log
  2. 2016-04-26T14:43:59.631+0000 I STORAGE [FileAllocator] allocating new datafile /data/work/mongodb/data/opWNFbyNlGQ6xShT.11, filling with zeroes...
  3. 2016-04-26T14:43:59.632+0000 I STORAGE [FileAllocator] FileAllocator: posix_fallocate failed: errno:28 No space left on device falling back
  4. 2016-04-26T14:43:59.632+0000 I STORAGE [FileAllocator] error: failed to allocate new file: /data/work/mongodb/data/opWNFbyNlGQ6xShT.11 size: 2146435072 failure creating new datafile; lseek failed for fd 40 with errno: errno:2 No s^C
  5.  
  6. /dev/vdh 16G 15G 553M 97% /data/a6a186a3-dc98-4f47-83f3-96e953c18b69
  7.  
  8. > db.runCommand( { repairDatabase: 1 } );
  9. {
  10. "ok" : 0,
  11. "errmsg" : "Cannot repair database opWNFbyNlGQ6xShT having size: 14975762432 (bytes) because free disk space is: 578928640 (bytes)",
  12. "code" : 14031
  13. }
  14.  
  15. > db.runCommand ( { compact: 'accounts', paddingFactor: 1.1 } )
  16. { "ok" : 1 }
  17.  
  18. > db.currentOp()
  19. { "inprog" : [ ] }
  20. > db.currentOp()
  21. { "inprog" : [ ] }
  22. > db.currentOp()
  23. { "inprog" : [ ] }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement