Reputation: 2339
Trying to make a remote connection from Robomongo to my ec2 ubuntu mongodb. I have been able to make connections to other non-ec2 ubuntu servers with Robomongo. But when I try with ec2 I keep getting the "you skipped authorization" error. I can remote connect to it in the terminal, but not with Robomongo. Is there something I a missing with ec2 remote connections?
What I have done:
I am able to connect but says I skipped authorization.
My mongo log reads:
Failed to authenticate neil@admin with mechanism MONGODB-CR: AuthenticationFailed MONGODB-CR credentials missing in the user document
Upvotes: 3
Views: 1477
Reputation: 762
The Robomongo (at least 0.8.4
) does not support Mongo 3.0 at this time.
For PHP, just update mongo.so module via pecl, because only 1.6
version is fully support Mongo 3.0.
https://github.com/paralect/robomongo/issues/766
Upvotes: 4