mongodb常用命令

mongodb常用命令

-- 启动mongodb
mongod --auth --config D:\mongodb-3.4.7\mongo.config --cpu

-- 启动mongodbstat
rem 普通模式
rem start mongostat --host 127.0.0.1:30000 5

rem 安全模式
start mongostat --host 127.0.0.1:30000 5 -u mongo -p myPwd --authenticationDatabase admin


-- 启动mongo客户端
mongo 127.0.0.1:30000

-- 备份mongodb-整库备份
mongodump -h 127.0.0.1:30000 -d test -o dump
-- 备份mongodb-按记录备份
mongoexport -h 127.0.0.1:30000 -d test -c ctest -q "{'_id':ObjectId('59a2f17093aca3572ea83baa')}" -o output/ctest.json

-- 还原mongodb
mongorestore -h 127.0.0.1:30000 dump/

你可能感兴趣的:(bigdata)