Node. js remotely connects to the MongoDB database server on another host
My MongoDB is installed in linux.
First, add a user
1. First, run the terminal command line on the MongoDB server host and enter
Mongo
2. Enter use admin to access the user management database.
3. db. addUser ("username", "password"); here, the username and password are the username and password you want to set. You can add a few more for future use.
If no error message is provided, the user is successfully added.
Second, the server can be connected through the MongoDB client of other hosts.
1. Enter
Sudo vi/etc/mongod. conf
2. Find
# Change bind_ip = 127.0.0.1 to bind_ip = 0.0.0.0 to remotely connect to this server. Previously, you can only connect locally.
# Change port = 27017 to port = 27017 to set the remote connection port
# Auth = true to auto = true to connect to the database through permission verification. If you still need to access the database through anonymous access or without permission verification, do not change
3. Restart MongoDB
Enter sudo service producer D restart or
/Etc/init. d/mongod restart
If the following message is displayed, the service is restarted successfully.
Mongod stop/waiting
Mongod start/running, process 15883
Connect to the MongoDB database remotely.
MongoDB 3.0 official version released and downloaded
CentOS compilation and installation of MongoDB
CentOS compilation and installation of php extensions for MongoDB and mongoDB
CentOS 6 install MongoDB and server configuration using yum
Install MongoDB2.4.3 in Ubuntu 13.04
MongoDB beginners must read (both concepts and practices)
MongoDB Installation Guide for Ubunu 14.04
MongoDB authoritative Guide (The Definitive Guide) in English [PDF]
Nagios monitoring MongoDB sharded cluster service practice
Build MongoDB Service Based on CentOS 6.5 Operating System
MongoDB details: click here
MongoDB: click here
This article permanently updates the link address: