type
status
date
slug
summary
tags
category
icon
password

official document - link

notion image

Some simple commands

notion image
Connect to a local MongoDB server
notion image
show databases, collections, and find commands
 
The examples above are all command-line (CML) operations. However, the graphical user interface (GUI) provides a much more intuitive and user-friendly experience. The GUI installation method is in GUI section.
Here are some common MongoDB CRUD (Create, Read, Update, Delete) commands in note format:

MongoDB CRUD Commands

1. Create (Insert Data)

  • Insert a single document:
    • Insert multiple documents:

      2. Read (Query Data)

      • Find all documents:
        • Find documents with a condition:
          • Find a single document:
            • Retrieve specific fields (projection):

              3. Update (Modify Data)

              • Update a single document:
                • Update multiple documents:
                  • Replace an entire document:

                    4. Delete (Remove Data)

                    • Delete a single document:
                      • Delete multiple documents:
                        • Delete all documents in a collection:

                          5. Other Useful Commands

                          • Count documents:
                            • Sort results:
                              • Limit results:
                                • Skip documents:
                                  • Create an index for faster queries:
                                    • Drop (delete) a collection:
                                      • Drop a database:

                                        Here are more common MongoDB commands for administration, indexing, aggregation, and more:

                                        MongoDB Advanced Commands

                                        1. Database Management

                                        • Show all databases:
                                          • Use (switch to) a database:
                                            • Show collections in the current database:
                                              • Drop a database:

                                                2. Collection Management

                                                • Create a new collection explicitly:
                                                  • Drop (delete) a collection:
                                                    • Check collection stats:

                                                      3. Aggregation Operations

                                                      • Basic aggregation example:
                                                        • Count the number of documents in a collection:
                                                          • Find the average age:

                                                            4. Indexing for Performance Optimization

                                                            • Create an index on a field:
                                                              • Create a compound index on multiple fields:
                                                                • List all indexes on a collection:
                                                                  • Drop an index:

                                                                    5. Bulk Operations

                                                                    • Bulk insert multiple documents:
                                                                      • Bulk update multiple documents:
                                                                        • Bulk delete multiple documents:

                                                                          6. Find Queries with Advanced Filters

                                                                          • Find documents where age is between 25 and 35:
                                                                            • Find documents where city is either "New York" or "Los Angeles":
                                                                              • Find documents where city is NOT "Chicago":
                                                                                • Find documents where the "tags" array contains "sports":
                                                                                  • Find documents where "tags" array contains BOTH "sports" and "movies":

                                                                                    7. Working with Embedded Documents & Arrays

                                                                                    • Find documents with a specific nested field value:
                                                                                      • Update a field inside an embedded document:
                                                                                        • Add an element to an array field:
                                                                                          • Remove an element from an array:
                                                                                            • Update specific array elements based on condition:

                                                                                              8. User & Role Management

                                                                                              • Create a new user:
                                                                                                • Show all users:
                                                                                                  • Delete a user:

                                                                                                    9. Backup & Restore

                                                                                                    • Backup a database:
                                                                                                      • Restore a database from a backup:

                                                                                                        10. Replication & Sharding (Basic Commands)

                                                                                                        • Check replication status:
                                                                                                          • Initiate a new replica set:
                                                                                                            • Add a secondary node to the replica set:
                                                                                                              • Check shard status:

                                                                                                                GUI - link

                                                                                                                notion image
                                                                                                                Database data can be easily viewed through the gui
                                                                                                                notion image

                                                                                                                Provide secure remote access

                                                                                                                1. Sign up for Cloudflare
                                                                                                                1. Buy Domain Name
                                                                                                                My domain name above is tianqiyao.men
                                                                                                                My domain name above is tianqiyao.men
                                                                                                                1. Access to Zero Trust
                                                                                                                1. To configure Tunnels, follow the step-by-step procedure
                                                                                                                notion image
                                                                                                                You can see that the local database data on my remote is directly accessible via the url
                                                                                                                notion image
                                                                                                                 
                                                                                                                WSL2 ConfigQGIS-Basic operations
                                                                                                                Tianqi
                                                                                                                Tianqi
                                                                                                                I'm currently working in a lab focused on computer vision projects powered by machine learning.
                                                                                                                Announcement
                                                                                                                type
                                                                                                                status
                                                                                                                date
                                                                                                                slug
                                                                                                                summary
                                                                                                                tags
                                                                                                                category
                                                                                                                icon
                                                                                                                password
                                                                                                                🎉Welcome to my blog🎉
                                                                                                                Sometimes it is necessary to refresh the page twice to get the latest data because the data in the database is not updated in time. This operation can be performed on each page.
                                                                                                                -- Tianqi ---