• Complain

Rangel D. - MongoDB: Learn One Of The Most Popular NoSQL Databases

Here you can read online Rangel D. - MongoDB: Learn One Of The Most Popular NoSQL Databases full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    MongoDB: Learn One Of The Most Popular NoSQL Databases
  • Author:
  • Genre:
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

MongoDB: Learn One Of The Most Popular NoSQL Databases: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "MongoDB: Learn One Of The Most Popular NoSQL Databases" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

CreateSpace Independent Publishing Platform, 2015. 70 p. ISBN-10: 1517457459, ISBN-13: 978-1517457457.
This book is an exploration of MongoDB. It begins by explaining what the database is, where it is used, and how it can be used. The next part explores how the environment for MongoDB can be setup, and this mainly includes installing the platform into your system. Installation on both Windows and Ubuntu, which is a distribution of Linux, is explored. After reading this book, you will know how to create your own database in MongoDB. The dropping of the database is also discussed. Collections are explored, and you will learn how to create these in MongoDB. Insertion of data into a collection is explored, as well as how to delete a collection from your database. Updating of data in a collection as well as querying the data from the collection is then explained. Projection in MongoDB is also presented, thus, you will know how to perform this in MongoDB. Sometimes, you might need to limit some records while querying the database. This is discussed in this book, along with sorting of data. You will also learn how to backup data and then restore it in MongoDB. Regular expressions are discussed, and thus, you will know how to use these so as to operate the database. The last part of this book explores MongoDB and Java, preparing you to perform the various MongoDB tasks in Java. iPAD Amazon Kindle, PC , Cool Reader (EPUB), Calibre (EPUB, MOBI, AZW3), Adobe Digital Editions (EPUB), FBReader (EPUB, MOBI, AZW3).

Rangel D.: author's other books


Who wrote MongoDB: Learn One Of The Most Popular NoSQL Databases? Find out the surname, the name of the author of the book and a list of all author's works by series.

MongoDB: Learn One Of The Most Popular NoSQL Databases — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "MongoDB: Learn One Of The Most Popular NoSQL Databases" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make

MongoDB Learn One Of The Most Popular NoSQL Databases Derek Rangel Derek Rangel Copyright 2015 All rights reserved. No part of this publication may be reproduced, distributed, or transmitted in any form or by any means, including photocopying, recording, or other electronic or mechanical methods, without the prior written permission of the author, except in the case of brief quotations embodied in critical reviews and certain other noncommercial uses permitted by copyright law. Table of Contents Disclaimer While all attempts have been made to verify the information provided in this book, the author does assume any responsibility for errors, omissions, or contrary interpretations of the subject matter contained within. The information provided in this book is for educational and entertainment purposes only. The reader is responsible for his or her own actions and the author does not accept any responsibilities for any liabilities or damages, real or perceived, resulting from the use of this information. The trademarks that are used are without any consent, and the publication of the trademark is without permission or backing by the trademark owner.

All trademarks and brands within this book are for clarifying purposes only and are the owned by the owners themselves, not affiliated with this document. Introduction MongoDB is one of the leading NoSQL (Non Structured Query Language) databases in use today. It can be used for various purposes, as well as for linking with programming languages while developing our applications. This is why you need to know how to operate MongoDB. This book will guide you in this. Chapter 1- Definition MongoDB is one of the leading NoSQL databases.

It is an open-source and document database which was written in the C++ programming language. It is used for the development of relational databases since it provides us with a traditional table approach to development of the database. Its schemas are well known for the dynamism that they offer, making the integration of data in particular types of application much faster and easier. MongoDB is a cross-platform database, and it offers a high availability, performance, and scalability and this is why it is liked by most database developers. The software is open-source, meaning that you can download and use it for free. In this book, we will explore the features of the database, and some of the functionalities that it offers.

Chapter 2- Environmental Setup Installation of MongoDB in Windows If you need to install MongoDB in your Windows platform, begin by downloading it from its respective site < https://www.mongodb.org/>. Make sure that you have downloaded its latest version and the right version for the operating system that you are using and the processor architecture. If you need to know the version of the Windows OS that you are using, just open the command prompt and then execute the following command: In my case I get the following regarding the architecture of my system - photo 1 In my case, I get the following regarding the architecture of my system: If you are using a 32 bit version of the Windows OS then the system can only - photo 2 If you are using a 32 bit version of the Windows OS, then the system can only support a database not larger than 2GB in size, and this is only suitable for evaluation and testing purposes. Once the download process has completed, identify a suitable directory and extract the download in it. The name of the folder where the extraction has been done should be MongoDB-win32-i386-[version]. It can also be MongoDB-win32-x86_64-[version}\, where the version is the version of the MongoDB that you have downloaded.

Once the extraction has been done, open the command prompt, and then run the command shown below: If you had done the extracting of the MongoDB in another directory navigate to - photo 3 If you had done the extracting of the MongoDB in another directory, navigate to the directory, and then execute the command given above. For the purpose of storage of files, MongoDB requires a folder. The default location of this folder is c:\data\db. This means that you have to manually create this folder by executing the command given below: MongoDB Learn One Of The Most Popular NoSQL Databases - image 4 In case the installation of the MongoDB was done in any other directory, then the alternative path to the folder \data\db needs to be specified . Once you are done with the above step, open the command prompt, and then navigate to the bin folder located in the directory where the MongoDB has been installed. Use the cd command so as to navigate to this folder.

The following commands can be used for this purpose: MongoDB Learn One Of The Most Popular NoSQL Databases - image 5 When you see the message waiting for connections on the screen, just know that your MongoDB is successfully running. The database is now ready to be run. You just have to open the command prompt and then execute the following command: In my case the above command gives me the following output The output - photo 6 In my case, the above command gives me the following output: The output clearly shows that the MongoDB was successfully installed into the - photo 7 The output clearly shows that the MongoDB was successfully installed into the system. You have now learned how to successfully install the database into the Windows operating system. Installation of MongoDB in Ubuntu You need to begin by importing the public GPG encryption key for MongoDB. This can be done by executing the command given below: You then have to create a file named etcaptsourceslistdMongoDBlist by - photo 8 You then have to create a file named /etc/apt/sources.list.d/MongoDB.list by use of the following command: MongoDB Learn One Of The Most Popular NoSQL Databases - image 9 You can then use the following command so as to update the repository: MongoDB Learn One Of The Most Popular NoSQL Databases - image 10 Once the update has been completed, you can install the MongoDB by use of the following command: In my case above I have installed the latest version of MongoDB which is on - photo 11 In my case above, I have installed the latest version of MongoDB which is on the market.

Make sure that in your case, the latest version of the MongoDB has been installed. The installation of MongoDB should run successfully. Once it is completed, you have to start the MongoDB. This can be done by use of the following command: To stop the MongoDB from running just use the following command If you - photo 12 To stop the MongoDB from running, just use the following command: If you need to restart the database just run the command given below To - photo 13 If you need to restart the database, just run the command given below: To use the MongoDB execute the following command The above command will - photo 14 To use the MongoDB, execute the following command: Picture 15

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «MongoDB: Learn One Of The Most Popular NoSQL Databases»

Look at similar books to MongoDB: Learn One Of The Most Popular NoSQL Databases. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «MongoDB: Learn One Of The Most Popular NoSQL Databases»

Discussion, reviews of the book MongoDB: Learn One Of The Most Popular NoSQL Databases and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.