配置本地环境之Mongodb在WindowsXP下安装及配置
今天看了一本关于nodejs 的书籍,里面有要求使用mongoDB数据库的相关知识。了解这些知识之前,还是要先安装一下mongoDB。下面就是安装的相关步骤,希望能对大家在安装mongoDB有所帮助。 1、下载mongoDB 根据自己电脑的系统配置,下载mongoDB的版本。由于我电
今天看了一本关于nodejs 的书籍,里面有要求使用mongoDB数据库的相关知识。了解这些知识之前,还是要先安装一下mongoDB。下面就是安装的相关步骤,希望能对大家在安装mongoDB有所帮助。
1、下载mongoDB
根据自己电脑的系统配置,下载mongoDB的版本。由于我电脑是XP系统的,所以先用XP系统安装作为案例。下载地址:http://www.mongodb.org/downloads
2、解压mongoDB
下载完成之后,下载目录会多一个压缩包。解压到自己想要安装mongoDB的目录。比如D:盘中。(如图1-1)
图1-1
3、建立工作目录
(1) 建立数据存目录 :D:\mongodb\data\db
(2) 建立日志文件夹 :D:\mongodb\log。mongodb.log不需要我们手动创建。
4、启动mongoDB服务
在开始运行中输入cmd进入控制台。先输入d:进入安装目录的盘,然后输入cd mongoDB进入文件件,在进入bin文件夹,并输入
mongod.exe --dbpath=D:\mongodb\data\db
成功后会出现如下图片

打开http://127.0.0.1:27017/,如下图

如上所示。命令窗口会出现一系列信息,最末尾一行是 connection accepted from 127.0.0.1:53110 #1,过一会(本操作环境大概花费20s)会出现mem (MB) res:16 virt:81 mapped:0,代表已经启动成。正常运行应该显示以下内容。大家可输入地址:http://localhost:27017/,页面会出现如下结果:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number
5、MongoDB安装为windows服务
新建控制台,并在 D:\mongodb\bin中输入
<!--[if gte mso 9]><![endif]--><!--[if gte mso 9]><![endif]--><p class="p0">mongod --logpath D:/mongodb/log/mongodb.log --logappend --dbpath D:/mongodb/data/db --directoryperdb --serviceName mongodb --install</p>
正确情况下显示以下内容
all output going to: E:\mongodb\logs\mongodb.log
成功后会出现如下图所示

开启服务,输入命令。
net start mongodb
显示内容
Mongo DB 服务已经启动成功。
成功后会出现如下图所示

在计算机 管理 服务中显示如下

6、容易出现的错误
(1) 初次安装mongoDB的时候,若有Mon Nov 18 19:00:00 [clientcursormon] mem (MB) res:1 virt:44 mapped:0或[conn3] end connection 127.0.0.1:3207是正常现象,再需要在控制台输入可以新启动一个控制台。只要是在http://localhost:27017/页面出现如下结果:
You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number 就是安装成功了
(2) 若在控制台当按完回车之后出现,“mongod.exe”不是内部或外部命令,也不是可运行的程序或批处理文件时候,检查一下运行环境,应该是在D:mongodb\bin>输入
(3) 若出现can't open [D:mongodb\log\mongodb.log] for log file:errno 2,必须见建立日志目录的时候,不要建mongoDB.log文件即可。不然会报错如下
D:\mongodb>mongod --dbpath d:\mongodb\data\db --logpath d:\mongodb\log\mongodb.log all output going to: d:\mongodb\log\mongodb.log can't open [d:\mongodb\log\mongodb.log] for log file: errno:2 绯荤粺鎵句笉鍒版寚 瀹氱殑鏂囦欢銆 Wed Jun 06 23:27:20 dbexit: Wed Jun 06 23:27:20 shutdown: going to close listening sockets... Wed Jun 06 23:27:20 shutdown: going to flush diaglog... Wed Jun 06 23:27:20 shutdown: going to close sockets... Wed Jun 06 23:27:20 shutdown: waiting for fs preallocator... Wed Jun 06 23:27:20 shutdown: closing all files... Wed Jun 06 23:27:20 closeAllFiles() finished Wed Jun 06 23:27:20 dbexit: really exiting now
配置本地环境之Mongodb在Windows XP下安装及配置,就为大家介绍到这里。mongoDB在XP系统下的安装就为大家介绍到这里,希望能对大家有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











When developing an e-commerce website, I encountered a difficult problem: how to provide users with personalized product recommendations. Initially, I tried some simple recommendation algorithms, but the results were not ideal, and user satisfaction was also affected. In order to improve the accuracy and efficiency of the recommendation system, I decided to adopt a more professional solution. Finally, I installed andres-montanez/recommendations-bundle through Composer, which not only solved my problem, but also greatly improved the performance of the recommendation system. You can learn composer through the following address:

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

GitLab Database Deployment Guide on CentOS System Selecting the right database is a key step in successfully deploying GitLab. GitLab is compatible with a variety of databases, including MySQL, PostgreSQL, and MongoDB. This article will explain in detail how to select and configure these databases. Database selection recommendation MySQL: a widely used relational database management system (RDBMS), with stable performance and suitable for most GitLab deployment scenarios. PostgreSQL: Powerful open source RDBMS, supports complex queries and advanced features, suitable for handling large data sets. MongoDB: Popular NoSQL database, good at handling sea

Detailed explanation of MongoDB efficient backup strategy under CentOS system This article will introduce in detail the various strategies for implementing MongoDB backup on CentOS system to ensure data security and business continuity. We will cover manual backups, timed backups, automated script backups, and backup methods in Docker container environments, and provide best practices for backup file management. Manual backup: Use the mongodump command to perform manual full backup, for example: mongodump-hlocalhost:27017-u username-p password-d database name-o/backup directory This command will export the data and metadata of the specified database to the specified backup directory.

MongoDB and relational database: In-depth comparison This article will explore in-depth the differences between NoSQL database MongoDB and traditional relational databases (such as MySQL and SQLServer). Relational databases use table structures of rows and columns to organize data, while MongoDB uses flexible document-oriented models to better suit the needs of modern applications. Mainly differentiates data structures: Relational databases use predefined schema tables to store data, and relationships between tables are established through primary keys and foreign keys; MongoDB uses JSON-like BSON documents to store them in a collection, and each document structure can be independently changed to achieve pattern-free design. Architectural design: Relational databases need to pre-defined fixed schema; MongoDB supports

To set up a MongoDB user, follow these steps: 1. Connect to the server and create an administrator user. 2. Create a database to grant users access. 3. Use the createUser command to create a user and specify their role and database access rights. 4. Use the getUsers command to check the created user. 5. Optionally set other permissions or grant users permissions to a specific collection.

Encrypting MongoDB database on a Debian system requires following the following steps: Step 1: Install MongoDB First, make sure your Debian system has MongoDB installed. If not, please refer to the official MongoDB document for installation: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-debian/Step 2: Generate the encryption key file Create a file containing the encryption key and set the correct permissions: ddif=/dev/urandomof=/etc/mongodb-keyfilebs=512

The main tools for connecting to MongoDB are: 1. MongoDB Shell, suitable for quickly viewing data and performing simple operations; 2. Programming language drivers (such as PyMongo, MongoDB Java Driver, MongoDB Node.js Driver), suitable for application development, but you need to master the usage methods; 3. GUI tools (such as Robo 3T, Compass) provide a graphical interface for beginners and quick data viewing. When selecting tools, you need to consider application scenarios and technology stacks, and pay attention to connection string configuration, permission management and performance optimization, such as using connection pools and indexes.
