Answers for "start mongodb command line windows"

1

windows start mongodb server

// Add the folder containing mongod to your PATH variable (see source for how)
// usually located here: 'C:Program FilesMongoDBServer4.4bin'
// open cmd.exe and run this command;
start mongod
Posted by: Guest on March-20-2021
0

start mongodb in terminal

Start a terminal for your mongo server
Go to <mongodb-install-directory>/bin directory
Run the command./mongod
Start a terminal for your mongo shell
Go to <mongodb-install-directory>/bin directory
Run the command (make sure you put the name of the database)./mongo test
Posted by: Guest on March-05-2021

Code answers related to "start mongodb command line windows"

Browse Popular Code Answers by Language