Created
October 9, 2011 05:11
-
-
Save zolzaya/1273331 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> db.help() | |
DB methods: | |
db.addUser(username, password[, readOnly=false]) | |
db.auth(username, password) | |
db.cloneDatabase(fromhost) | |
db.commandHelp(name) returns the help for the command | |
db.copyDatabase(fromdb, todb, fromhost) | |
db.createCollection(name, { size : ..., capped : ..., max : ... } ) | |
db.currentOp() displays the current operation in the db | |
db.dropDatabase() | |
db.eval(func, args) run code server-side | |
db.getCollection(cname) same as db['cname'] or db.cname | |
db.getCollectionNames() | |
db.getLastError() - just returns the err msg string | |
db.getLastErrorObj() - return full status object | |
db.getMongo() get the server connection object | |
db.getMongo().setSlaveOk() allow this connection to read from the nonmaster member of a replica pair | |
db.getName() | |
db.getPrevError() | |
db.getProfilingLevel() - deprecated | |
db.getProfilingStatus() - returns if profiling is on and slow threshold | |
db.getReplicationInfo() | |
db.getSiblingDB(name) get the db at the same server as this one | |
db.isMaster() check replica primary status | |
db.killOp(opid) kills the current operation in the db | |
db.listCommands() lists all the db commands | |
db.logout() | |
db.printCollectionStats() | |
db.printReplicationInfo() | |
db.printSlaveReplicationInfo() | |
db.printShardingStatus() | |
db.removeUser(username) | |
db.repairDatabase() | |
db.resetError() | |
db.runCommand(cmdObj) run a database command. if cmdObj is a string, turns it into { cmdObj : 1 } | |
db.serverStatus() | |
db.setProfilingLevel(level,<slowms>) 0=off 1=slow 2=all | |
db.shutdownServer() | |
db.stats() | |
db.version() current version of the server | |
db.getMongo().setSlaveOk() allow queries on a replication slave server | |
db.fsyncLock() flush data to disk and lock server for backups | |
db.fsyncUnock() unlocks server following a db.fsyncLock() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment