OVERVIEW
MongoDB is a source-available cross-platform document-oriented database program. It is used to build highly available and scalable internet applications. With its flexible schema approach, it's popular with development teams using agile methodologies.
GET STARTED
To verify the installation, follow the below instructions
Step 1. Connect to SSH:
Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
In the navigation pane, choose Instances.
Select the instance and choose Connect.
Choose SSH Client
Copy the SSH command and paste it into the terminal.
ssh ubuntu@publicIP -i [Path of key pair file]
If it shows an access denied message run the following command, then run the above command again to connect via ssh.
chmod 400 [Path of key pair file]
Once launched in the Amazon EC2 Service, please connect to the instance via an SSH client using the ec2-user with the key pair associated at launch. Once connected as the ec2-user user, you will be able to sudo to the root user
Step 2. Verify the installation
Follow the steps to verify the MongoDB installation
1. Login with ssh
2. Type the below command to check the version
mongod --version
You will see the responses as shown below.
To interact with MongoDB using the below commands:
1. To access the MongoDB shell, run the command mongosh on the terminal as shown
mongosh
2. If you want to use a database with the name <mydb>, then use DATABASE statement would be as follows −
>use mydb
switched to db mydb
3. To check your currently selected database, use the command db
>db
mydb
4. If you want to check your databases list, use the command show dbs
show dbs
5. Your created database (mydb) is not present in the list. To display the database, you need to insert at least one document into it.
>db.movie.insert({"name":"tutorials point"})
>show dbs
mydb 0.23012GB
To monitor and assess application functions:-
a. Navigate to your Amazon EC2 console and verify that you're in the correct region.
b. Choose Instances and select your launched instance.
c. Select the server to display your metadata page and choose the Status checks tab at the bottom of the page to review if your status checks passed or failed.
For information about how to use the application, please visit: https://www.tutorialspoint.com/mongodb/index.htm
For detailed information about managing and requesting increased service please visit: https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html
Comments