mongodb常用操作
Posted chenjw-note
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb常用操作相关的知识,希望对你有一定的参考价值。
1.无认证启动mongodb
numactl --interleave=all /usr/local/mongodb/bin/mongod --port %d --master --dbpath %s --logpath %s --pidfilepath %s --logappend --noauth --oplogSize=240 --fork
2.创建mongodb认证
host=$MONGODB_HOST:$MONGODB_PORT mongo $host/admin --eval "db.system.version.remove({});" mongo $host/admin --eval "db.system.version.insert({‘_id‘:‘authSchema‘,‘currentVersion‘:3});" mongo $host/admin --eval "db.createRole({role:‘sysadmin‘,roles:[],privileges:[{resource:{anyResource:true},actions:[‘anyAction‘]}]});" mongo $host/admin --eval "db.createUser({user:‘$MONGODB_USER‘,pwd:‘$MONGODB_PASS‘,roles:[‘sysadmin‘]})"
3.启动认证mongodb
numactl --interleave=all /usr/local/mongodb/bin/mongod --port %d --master --dbpath %s --logpath %s --pidfilepath %s --logappend --auth --keyFile=mongodb_key --oplogSize=240 --fork
4.做mongodb从库
numactl --interleave=all /usr/local/mongodb/bin/mongod --source 主库ip:主库端口 --port %d --slave --dbpath %s --logpath %s --pidfilepath %s --logappend --auth --keyFile=mongodb_key --nohttpinterface --autoresync --fork
5.外部执行mongodb语句
echo ‘db.gl.scene.drop();‘ | /usr/local/mongodb/bin/mongo 127.0.0.1:27317/sid${server_id} -uxxx -pxxxx --authenticationMechanism=MONGODB-CR --authenticationDatabase=admin
6.导出某条件的数据【此处不开启认证】
/usr/local/mongodb/bin/mongoexport -h ${source_ip} --port ${source_port} -d sid${server_id} -c gl.player_secretary -q {‘pi‘:${pi}} -o gl.player_secretary_${pi}.json
7.删除某条件的数据
echo ‘db.gl.player_secretary.remove({\"pi\":${pi}});‘ | /usr/local/mongodb/bin/mongo 127.0.0.1:27317/sid${server_id} -uxxx -pxxxx --authenticationMechanism=MONGODB-CR --authenticationDatabase=admin
8.导入json数据
/usr/local/mongodb/bin/mongoimport -h 127.0.0.1 --port=27317 -uxxx -pxxxx --authenticationMechanism=MONGODB-CR --authenticationDatabase=admin -d sid${server_id} -c gl.player_secretary --upsert gl.player_secretary_${pi}.json
以上是关于mongodb常用操作的主要内容,如果未能解决你的问题,请参考以下文章