How To Use the MongoDB Shell
Learn how to use the MongoDB Shell (mongosh) to connect, query data, manage collections, and run CRUD operations from the command line.
Learn how to use the MongoDB Shell (mongosh) to connect, query data, manage collections, and run CRUD operations from the command line.
MongoDB представляет собой систему управления базами данных NoSQL с открытым исходным кодом, которая широко используется в современных приложениях. В этой статье мы опишем процесс установки MongoDB на ваш сервер для использования в production-среде. <$>[note] На момент…
Если вы активно занимаетесь разработкой приложений, использование Docker может упростить ваш рабочий процесс и процесс развертывания вашего приложения в продакшен. Работа с контейнерами в процессе разработки предоставляет следующие преимущества: Среды…
MongoDB is one of the most popular NoSQL database engines. It is famous for being scalable, powerful, reliable and easy to use. In this article we’ll show you how to back up, restore, and migrate your MongoDB databases.
Melissa Anderson escribió una versión anterior de este tutorial. MongoDB, también conocido como Mongo, es una base de datos de documentos de código abierto usada comúnmente en…
MongoDB is one of the most popular NoSQL database engines. It is famous for being scalable, powerful, reliable and easy to use. In this article we’ll show you how to import and export your MongoDB databases.
MongoDB is a document-oriented database that is free and open-source. It is classified as a NoSQL database because it does not rely on a traditional table-based relational database structure. Instead, it uses JSON-like documents with dynamic schemas.
MongoDBは、最新のWebアプリケーションで一般的に使用されるオープンソースのドキュメントデータベースです。従来のテーブルベースのリレーショナルデータベース構造に依存しないため、NoSQLデータベースとして分類されます。代わりに、動的スキーマを持つJSONのようなドキュメントを使用します。このチュートリアルでは、Ubuntu 20.04サーバーにMongoDBをインストールしてテストし、systemdサービスとして管理する方法を学びます。
Parse is a Mobile Backend as a Service platform. In January of 2016, Parse announced that its hosted services would shut down within a year. In order to help its users transition away from the service, Parse has released an open source version of its backend, called Parse Server. This guide supplements the official documentation with instructions for installing the Parse Server module on an Ubuntu 14.04 system, such as a cloud servers.
Many times, you might need to migrate data from MongoDB to Elasticsearch in bulk. Writing your own program for this task can be tedious. There is a wonderful open source utility called Transporter, developed by [Compose](https://www.compose.io/) (a cloud platform for databases), that takes care of this task very efficiently. This tutorial shows you how to use the open-source utility Transporter to copy data from MongoDB to Elasticsearch with custom transformations.