ECONNREFUSED error when connecting to mongodb from node.js

前端 未结 13 1258
不思量自难忘°
不思量自难忘° 2020-11-27 05:51

I know I\'m doing some very stupid and noobish, but I\'m hoping someone can help me set up a basic database connection to mongodb from node.js on a mac.

I\'ve instal

13条回答
  •  囚心锁ツ
    2020-11-27 06:42

    ECONNREFUSED error

    There are few reasons of this error in node :

    1. Your port is already serving some service so it will refuse your connection.

      go to command line and get pid by using following command

      $ lsof -i:port_number

      Now kill pid by using

      $ kill -9 pid(which you will get by above command)

    2. Your server is not running e.g. in this case please check your mongoose server is running or run by using following command.

      $ mongod

    3. There is also possibility your localhost is not configured properly so use 127.0.0.1:27017 instead of localhost.

提交回复
热议问题