MongoDB auth

mongoexport --host $host \
--port 27017 \
--username $username \
--password $pwd \
--authenticationDatabase "admin" \
--db test \
--collection employee \
--query '{age: { $gt: 30}}' \
--out myRecord.json

你可能感兴趣的:(MongoDB auth)