MongoDb: Difference between revisions
Jump to navigation
Jump to search
Line 26: | Line 26: | ||
) | ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* Remove user | |||
<syntaxhighlight lang="JavaScript"> | |||
use admin | |||
db.dropUser("userName") | |||
</syntaxhighlight> | |||
* Change user Password | |||
<syntaxhighlight lang="JavaScript"> | |||
db.changeUserPassword("username:", "newPassWord") | |||
</syntaxhighlight> | |||
=== Database Engine Management === | === Database Engine Management === | ||
* Stop Database | * Stop Database |
Revision as of 19:07, 6 June 2020
Cheat sheet
- Connect to a mongodb
mongo
- Display dabases
show dbs
- Connect to a database
use database
- List Tables (Collections)
show collections
- Display content of a table
db.collection.find()
- Remove Tables (Collections)
db.collection.drop()
- Remove Database (Collections)
db.dropDatabase()
User Management
- Create Admin user
use admin
db.createUser(
{
user: "userName",
pwd: "passWord",
roles: [ { role: "userAdminAnyDatabase", db: "admin" }, "readWriteAnyDatabase" ]
}
)
- Remove user
use admin
db.dropUser("userName")
- Change user Password
db.changeUserPassword("username:", "newPassWord")
Database Engine Management
- Stop Database
db.adminCommand( { shutdown: 1} )
Http Interface
Inable Http Interface
add http.enabled: true in /etc/mongod.conf
net: port: 27017 bindIp: 127.0.0.1 http.enabled: true http.RESTInterfaceEnabled: true