How do I Drop A MongoDB Database From The Command Line?

In this tutorial, we will learn How to Drop A MongoDB Database From The Command Line to do so we can directly use the drop command to delete the whole database. Drop A MongoDB Database Drop a database means deleting a database permanently from a well defined database. And to drop permanently by a single … Read more

How To Query MongoDB With “like”?

In this Tutorial, we will learn How to query MongoDB with “like” which is used for finding the match for a string or a substring that might be present in a full string which could be there. To Query MongoDB With “like” We use like statements to find a match in between a substring or … Read more

How to Connect to Mongodb database server Locally and Remote

As per mongodb documentation, we can use the mongo command to access the database using below command – Connect to mongodb database locally $ mongo -u user1 -p password123 –authenticationDatabase admin mongo -u user 127.0.0.1/admin Connect to mongodb database Remotely To connect to mongo database remotely we need below steps – 1. you should have … Read more

%d bloggers like this: