私はエクスポートしようとしています:
ilya@server ~]$ mongoexport --host localhost --port 27000 --collection system.users --db mydb --out profile.json
connected to: localhost:27000
exported 1 records
正常に動作しますsystem.users
ただし、次の場合は機能しませんsystem.profile
:
[ilya@server ~]$ mongoexport --host localhost --port 27000 --collection system.profile --db mydb --out profile.json
connected to: localhost:27000
exported 0 records
コレクションが空ではありません:
[ilya@server ~]$ mongo localhost:27000/mydb
MongoDB shell version: 2.2.3
connecting to: localhost:27000/mydb
mongos> db.system.profile.count();
1044
これらの行をエクスポートしてどこかで使用する必要があります。たとえば、通常のコレクションのように (キャップされていませんsystem.profile
)。