fzaninotto / uptime

A remote monitoring application using Node.js, MongoDB, and Twitter Bootstrap.
http://fzaninotto.github.com/uptime/
MIT License
3.62k stars 703 forks source link

MongoDB authentication failure. #343

Open randeepbhatia opened 8 years ago

randeepbhatia commented 8 years ago

Is anyone experiencing mongoDB authentication failure issues ? I am using mongolabs

HolaMan commented 8 years ago

me too !!

GlennGeenen commented 8 years ago

I guess this is because of the outdated mongoose version, try with mongoose 3.8.39.

Mau04 commented 8 years ago

I had the same problem. Updating mongoose solved it. thx @GlennGeenen

giulioroggero commented 8 years ago

May be your are trying to connecting to a mongo instance without authentication. In that case use

connectionString: mongodb://localhost/uptime

in configuration file

config/default.yaml

soelu commented 8 years ago

Thanks, this solved it for me!