laijbin / Blog

Note insights and personal development.
0 stars 0 forks source link

Mac 安装 Mongodb #5

Open laijbin opened 8 years ago

laijbin commented 8 years ago

Install MongoDB on OS X

里面提供了两种方法。一种是直接直接到官网下载,但我怎么都下载不了。所以选择了第二种,Homebrew

安装Homebrew方法很简单,在终端里输入Homebrew官网里那句ruby命令即可。

安装完Homebrew后,输入brew install mongodb更新一下,然后输入brew install mongodb等待即可。

laijbin commented 8 years ago

用nodejs连接Mongodb时,报错:Error: connect ECONNREFUSED at exports._errnoException (util.js:746:11) at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1010:19)

解决方法:command+n打开新终端,输入mongod --config /usr/local/etc/mongod.conf把mongodb先启动起来,再在原来的启动即可。