Home  >  Article  >  Database  >  Node.js远程连接另一个主机上的MongoDB数据库服务器

Node.js远程连接另一个主机上的MongoDB数据库服务器

WBOY
WBOYOriginal
2016-06-07 15:55:031123browse

Node.js远程连接另一个主机上的MongoDB数据库服务器

我的MongoDB是装在linux下的。

首先,先添加用户

1、首先在MongoDB服务器主机上进行terminal命令行,输入

mongo

2、输入 use admin  进入用户管理数据库

3、db.addUser("username","password");这里的username和password分别为你要设置的用户名和密码,,你可以多加几个,以备以后使用

如没有提错误信息,说明已成功添加用户。

其次,设置服务器可以通过其它主机的MongoDB客户端可以连接

1、在终端命令行上输入

sudo vi /etc/mongod.conf

2、在打开的文件中找到 

#bind_ip = 127.0.0.1 改为bind_ip=0.0.0.0 即可通过远程连接此服务器,以前是只可以在本地连接

#port = 27017 改为 port=27017 即设置远程连接的端口

#auth=true 改为 auto=true 即将权限验证连接数据库,如还需通过匿名访问或不通过权限验证访问,此处可以不改

3、重启MongoDB 

  在命令行输入 sudo service mongod restart  或

          /etc/init.d/mongod restart

  如提示类似以下信息,说明服务重启完成

  mongod stop/waiting

  mongod start/running, process 15883

再进行远程连接MongoDB数据库即可。

MongoDB 3.0 正式版发布下载 

CentOS编译安装MongoDB

CentOS 编译安装 MongoDB与mongoDB的php扩展

CentOS 6 使用 yum 安装MongoDB及服务器端配置

Ubuntu 13.04下安装MongoDB2.4.3

MongoDB入门必读(概念与实战并重)

Ubunu 14.04下MongoDB的安装指南

《MongoDB 权威指南》(MongoDB: The Definitive Guide)英文文字版[PDF]

Nagios监控MongoDB分片集群服务实战

基于CentOS 6.5操作系统搭建MongoDB服务

MongoDB 的详细介绍:请点这里
MongoDB 的下载地址:请点这里

本文永久更新链接地址

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn