Difference between revisions of "MongoDB URLs"
From mi-linux
Jump to navigationJump to search (Created page with "Main Page >> MongoDB >>MongoDB Workbook >> Useful URLs == MongoDB URLs == Mongo Manual: https://docs.mongodb.com/getting-started/shell/...") |
|||
(15 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
== MongoDB URLs == | == MongoDB URLs == | ||
− | + | === Manual === | |
− | https://docs.mongodb.com/ | + | * [https://docs.mongodb.com/manual/ MongoDB manual] |
− | Tutorial: | + | Note, MongoDB is administrated by roles, which define what privileges you have on your database. |
+ | |||
+ | Your account supports the following roles only: | ||
+ | * readwrite: ability to insert/update/delete documents in your own database | ||
+ | * changeOwnPassword: ability to change your password | ||
+ | |||
+ | So some commands in the manual and tutorials below will not work, because you do not have the authority to run them! | ||
+ | |||
+ | === Tutorials === | ||
+ | |||
+ | A number of tutorials exist: | ||
+ | * [https://docs.mongodb.com/manual/introduction/ Introduction to MongoDB] | ||
+ | * [https://www.tutorialspoint.com/mongodb/ MongoDB Tutorial] | ||
+ | * [https://docs.mongodb.com/manual/tutorial/write-scripts-for-the-mongo-shell/ Writing Mongo Shell scripts] | ||
+ | * [https://docs.mongodb.com/manual/data-modeling/ MongoDB Data Models] | ||
+ | * [https://www.tutorialspoint.com/mongodb/mongodb_create_collection.htm Collections ] | ||
+ | |||
+ | If some commands do not work, please note the comment about roles above. | ||
+ | |||
+ | == Next Step == | ||
+ | |||
+ | Return to the [[MongoDB_Workbook|Workbook]]. |
Latest revision as of 15:32, 24 October 2016
Main Page >> MongoDB >>MongoDB Workbook >> Useful URLs
MongoDB URLs
Manual
Note, MongoDB is administrated by roles, which define what privileges you have on your database.
Your account supports the following roles only:
- readwrite: ability to insert/update/delete documents in your own database
- changeOwnPassword: ability to change your password
So some commands in the manual and tutorials below will not work, because you do not have the authority to run them!
Tutorials
A number of tutorials exist:
- Introduction to MongoDB
- MongoDB Tutorial
- Writing Mongo Shell scripts
- MongoDB Data Models
- Collections
If some commands do not work, please note the comment about roles above.
Next Step
Return to the Workbook.