MongoDb: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 16: | Line 16: | ||
== Http Interface == | == Http Interface == | ||
=== Inable Http Interface === | |||
add http.enabled: true in /etc/mongod.conf | |||
<pre> | |||
net: | |||
port: 27017 | |||
bindIp: 127.0.0.1 | |||
http.enabled: true | |||
http.RESTInterfaceEnabled: true | |||
</pre> | |||
=== Access to htps interface === | |||
[http://localhost:28017/ Http Interface] | [http://localhost:28017/ Http Interface] |
Revision as of 04:30, 6 January 2017
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()
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