Cannot connect to mongodb errno:61 Connection refused

前端 未结 13 1284
心在旅途
心在旅途 2020-12-04 05:38

I recently installed mongodb-2.6.0 with Homebrew. After successfully installed, I tried to connect using the mongo command. I am receiving the following errors

13条回答
  •  情歌与酒
    2020-12-04 06:09

    My guess is that you do not have a running database while trying to access testing through the "mongo" command.

    First run this command in terminal:

    mongod 
    

    Then open another terminal window and run:

    mongo

    Everything should be working now.

提交回复
热议问题