0

私はこの共通のデータをダンプできることを理解しています

mongodump --db mydb

このコマンドは、すべてのmydbコレクションデータを./dump/mydbにダンプします。しかし、私が名前を付けた別のディレクトリ(たとえば、/ home / user / mydb)にデータをダンプしたいと思います。

--dbpathおよび--directoryperdbオプションを試してみましたが、希望どおりではないようです。

これを行う方法はありますか?

./mongodump --help

MongoDBデータをBSONファイルにエクスポートします。

オプション:

 --help                   produce help message
  -v [ --verbose ]         be more verbose (include multiple times for more
                           verbosity e.g. -vvvvv)
  --version                print the program's version and exit
  -h [ --host ] arg        mongo host to connect to ( <set name>/s1,s2 for
                           sets)
  --port arg               server port. Can also use --host hostname:port
  --ipv6                   enable IPv6 support (disabled by default)
  -u [ --username ] arg    username
  -p [ --password ] arg    password
  --dbpath arg             directly access mongod database files in the given
                           path, instead of connecting to a mongod  server -
                           needs to lock the data directory, so cannot be used
                           if a mongod is currently accessing the same path
  --directoryperdb         if dbpath specified, each db is in a separate
                           directory
  --journal                enable journaling
  -d [ --db ] arg          database to use
  -c [ --collection ] arg  collection to use (some commands)
  -o [ --out ] arg (=dump) output directory or "-" for stdout
  -q [ --query ] arg       json query
  --oplog                  Use oplog for point-in-time snapshotting
  --repair                 try to recover a crashed database
  --forceTableScan         force a table scan (do not use $snapshot) 
4

1 に答える 1

2

-oオプションが必要です。

  -o [ --out ] arg (=dump) output directory or "-" for stdout

これにより、出力の行き先を指定できます。

于 2012-09-04T23:53:55.610 に答える