Can't connect to local (running) mongo using 'meteor mongo'

前端 未结 7 637
醉酒成梦
醉酒成梦 2021-01-19 16:59

I\'m playing with meteor, Installed it on Ubuntu 14.10 & followed the todos tutorial. The Meteor run log:

$ meteor run
[[[[[ ~/bckd/homedir/learn/meteor/         


        
7条回答
  •  感动是毒
    2021-01-19 17:19

    check if there is a running mongo process, and kill it manually:

    ps -aux | grep mongo
    sudo kill [pid]
    

    ..then restart your meteor app.

    --> I think this specific situation exists only when starting meteor on a custom port (not tested, but pretty obvious)

提交回复
热议问题