View logs:
cat /var/log/mongodb/mongod.log/etc/mongod.confmongomongo> show dbsmongo> use schoolmongo> dbmongo> db.createCollection("persons")mongo> show collectionsmongo> db.persons.insert({
        "name": "Jonh Doe",
        "age": 45,
        "location": "New York",
        "salary": 5000
       })mongo> db.persons.find()mongo> db.persons.find({"name": "John Doe"})