No Image

MongoDB Common Commands

March 23, 2018 0

DATABASE COMMANDS: list databases: show dbs list Collections/Tables: show collections //output every collection OR show tables OR db.getCollectionNames() Select specific collection/table: db.collectionName.find() ROLES COMMANDS: list […]

No Image

MongoDB Startup Script

March 23, 2018 0

Below is a startup script for MongoDB in case you are unable to find one: #!/bin/sh # chkconfig: 35 85 15 # description: Mongo is […]

No Image

Mongodb Enable Authentication

March 23, 2018 0

Start MongoDB without access control. Connect to the instance using command line: mongo Once you are in the mongo shell, create the administrator user. use […]