How to start the mongodb service in the windows environment: first open the command window and switch to the "bin" directory under the mongodb installation directory; then start the service and print some startup information in the command window; finally in the browser Enter [http://localhost:27017/].
#The operating environment of this article: Windows 7 system, Dell G3 computer.
How to start the mongodb service in a windows environment:
1. Open the command window and switch to the "bin" directory under the mongodb installation directory.
Enter the command: cd E:\software\MongoDB\Server\3.4\bin
##2. Start the service. Enter the command: "mongod --dbpath E:\software\MongoDB\data Note: --dbpath specifies the database storage directory. Please note that there are two "" before dbpath -". 3. If some startup information is printed in the command window, it means the startup is successful. As shown below: 4. Enter in the browser http://localhost:27017/, you can see the displayed information is: So far, the mongodb service has been started successfully. Close the command window to close the mongodb service.Related video recommendations:
The above is the detailed content of How to start mongodb service in windows environment. For more information, please follow other related articles on the PHP Chinese website!