3

How could I alternatively dump mongodb, since pacman does not ship mongodb-tools with it ?

[root@pi2 lib]# mongo
mongo       mongod      mongoperf   mongos      mongosniff 
[root@pi2 lib]# mongodump
-bash: mongodump: command not found
izdi
  • 555
  • 1
  • 7
  • 24
  • 2
    Connect from another machine where you "can" run the tool. You can run over the network, and since MongoDB 3.0 that is the only way to connect to an instance. Backup and restore should be discussed on [dba.stackexchange.com](http://dba.stackexchange.com) anyway, since it is not really about programming. – Blakes Seven Jul 24 '15 at 08:19

1 Answers1

7

you just install mongodb-tools to get command mongodump, mongorestore, etc

shodiqul muzaki
  • 110
  • 3
  • 7