Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Database \ MongoDB Study Notes (1) - Install MongoDB on Windows systems     - High-performance JavaScript loops and flow control (Programming)

- STL spatial Configurator (Programming)

- Erlang concurrency and foundation (Programming)

- NAT (network address translation) Realization (Linux)

- ActiveMQ5.11.1 and JDK version matching relation (Linux)

- Oracle Client + PL SQL Developer enables remote access to the Oracle database (Database)

- Linux Getting Started tutorial: Borrow Windows fonts in Ubuntu 14.10 (Linux)

- Sysdig: system troubleshooting tool (Linux)

- Linux system boot process ARM platforms (Linux)

- CentOS network configuration 7, and set the host name and IP-bound problems (Linux)

- Oracle Client Easy Connection error ORA-12154, TNS-03505 (Database)

- Oracle GoldenGate encryption (Database)

- How to upgrade the kernel to 3.13.7 on Ubuntu / Linux Mint (Linux)

- Ubuntu 14.04 installation configuration GNOME Classic interface (Linux)

- Java Performance Tuning the proxy mode (Programming)

- AngularJS - Custom instructions (Programming)

- VMware11 virtual machine Ubuntu14.10 system partition sda1 disk expansion (Linux)

- Efficient Linux Shell - Shell special characters Summary (Linux)

- CentOS 6.x and CentOS7 installation RPMforge (Linux)

- CentOS yum configuration under local sources (Linux)

 
         
  MongoDB Study Notes (1) - Install MongoDB on Windows systems
     
  Add Date : 2018-11-21      
         
         
         
  Outline

This paper describes a method MongoDB installed on Windows systems.

MongoDB official website: http: //www.mongodb.org/, the latest version is 2.6.7.

note:

From the beginning of version 2.2, MongoDB does not support Windows XP. Please use the latest version of windows to use the latest version of MongoDB.

If you are running any version of Windows Server 2008 R2 or Windows 7, install the hot fixes to address the use of a memory-mapped files on Windows problem.

Download and install

Official website provides 32-bit and 64-bit zip compression free installation package and msi installation package. After the download extract the zip to develop directory to use; msi click to run, there is no particular need to pay attention. Both the installation is very simple, we need to choose your operating system to download and install the appropriate version, does not enumerate here.

32-bit and 64-bit difference: 32 The biggest mongodb 2G only store data, 64 there is no limit.

I used the operating system is windows 7 x64, MongoDB 2.6.7 is the latest 64-bit compressed package, extract the path to D: \ mongodb.

Create a database path

Before you start MongoDB service, you must manually create a database file to hold the folder, otherwise not start.

As apparent from the error message is because the default database path dbpath (\ data \ db \) does not exist, we need to create this directory or specified directory in --dbpath in.

As used herein, the default path for presentation, the command to create a \ data \ db \ directory, which is the position where the letter mongodb under the root directory, ie D: \ data \ db.

D: \ mongodb> md \ data \ db \
Configuration environment variable

In order to be more convenient MongoDB command operations, we also disposed of its environment variables. Operation is also very simple to Windows 7, for example, the computer -> right-click menu "Properties" to open the "System Properties window" -> "Advanced System Settings" -> "Advanced" tab -> Environment Variables, values ​​in the system variables path The last increase in "D: \ mongodb \ bin", after saving to re-open a command prompt window, do not need to enter D: \ mongodb \ bin directory to quickly perform mongodb, mongo MongoDB and other commands.

Start MongoDB service

If the data path is the default \ data \ db, in the command prompt window, start the MongoDB service by mongod.exe or mongod command.

D: \ mongodb \ bin> mongod
mongod --help for help and startup options
2015-02-07T19: 52: 55.252 + 0800 [initandlisten] MongoDB starting: pid = 6000 port = 27017 dbpath = \ data \ db \ 64-bit host = fanqi-s550c
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] targetMinOS: Windows 7 / Windows Server 2008 R2
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] db version v2.6.7
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] git version: a7d57ad27c382de82e9cb93bf983a80fd9ac9899
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] build info: windows sys.getwindowsversion (major = 6, minor = 1, build = 7601, platform = 2, service_pack = 'Service Pack 1') BOOST_LIB_VERSION = 1_49
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] allocator: system
2015-02-07T19: 52: 55.253 + 0800 [initandlisten] options: {}
2015-02-07T19: 52: 55.256 + 0800 [initandlisten] journal dir = \ data \ db \ journal
2015-02-07T19: 52: 55.257 + 0800 [initandlisten] recover: no journal files present, no recovery needed
2015-02-07T19: 52: 55.277 + 0800 [initandlisten] waiting for connections on port 27017
If the data path is another path, you need to increase --dbpath parameter specifies the path. Note that there is a space in the path, then you will need to have to use the entire directory in double quotes, otherwise it will error.

D: \ mongodb \ bin \ mongod.exe --dbpath D: \ mongodb \ data \ db
 Information can be learned from the start by default MongoDB port 27017 waiting for a connection, we can use a browser to access "http: // localhost: 27017" view related information.

Add the MongoDB service windows service

In order not to each use MongoDB through cd, mongod complicated commands to start the service, we can add it to the windows service, using the following command:

D: \ mongodb \ bin> mongod --dbpath = D: \ data \ db --logpath = D: \ mongodb \ logs \ mongod.log --install --serviceName MongoDB
D: \ mongodb \ bin> net start MongoDB
MongoDB service has started successfully.
D: \ mongodb \ bin> net stop MongoDB
MongoDB service was stopped successfully.
among them:

--dbpath: specify the database path

--logpath: Specifies to save the log file path

--install: Install windows services

--serviceName: Setting MongoDB service name

net start MongoDB: start MongoDB service

net stop MongoDB: Stop MongoDB service

After the operation, we open the windows service management interface, you can see "MongoDB" service, and then how to set believe we know everything.
     
         
         
         
  More:      
 
- Hadoop 2.5 Pseudo distribution installation (Server)
- Linux screen commonly commands (Linux)
- Using Oracle for Oracle GoldenGate to achieve a one-way data synchronization (Database)
- Singleton (Linux)
- How to set cache valid time in Apache (Server)
- DRBD Principle and Features Overview (Server)
- RPM package management under Linux (Linux)
- AWK principles and commands and file input (Linux)
- Ubuntu rights management common commands (Linux)
- C ++ based socket communication TCP and UDP (Programming)
- Linux System Getting Started Learning: Disable HTTP forwarding wget in (Linux)
- Installation under Linux to deploy Java (Linux)
- Btrfs file system repair techniques (Linux)
- Ubuntu 10.04 to Ubuntu 10.10 Upgrade (Linux)
- MySQL optimization of the relevant Group By (Database)
- Household use Linux Security (Linux)
- How to install new fonts on Ubuntu 14.04 and 14.10 (Linux)
- Using Android Studio integrated development environment to build Android (Linux)
- Use Redis as time-series database: why and how (Database)
- How to install Eclipse Luna IDE on CentOS 7 / RHEL 7 (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.