Unable to connect to MongoDB

前端 未结 9 1115
借酒劲吻你
借酒劲吻你 2021-02-02 11:17

I\'ve just installed MongoDB (standard Ubuntu build, not the latest stable) and for some reason I can\'t connect:

Mon Feb  6 03:11:22 Error: couldn\'t connect to         


        
9条回答
  •  广开言路
    2021-02-02 11:49

    Another way is to add mongod option param bind_ip

    mongod -–help
    

    --bind_ip arg comma separated list of ip addresses to listen on - localhost by default

    --bind_ip_all bind to all ip addresses

    mongod --fork --logpath /var/log/mongodb.log --dbpath /data/db --bind_ip 0.0.0.0
    

提交回复
热议问题