-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Authentication Error #21
Comments
Can you show me what connection string you used for the MongoClient class? |
Its 'mongodb' => array( I tried another mongoDB package which is lmongo, That giving same error too. |
Can you show me the one you used for PHP's MongoClient one? Your configuration should generate:
|
class DbConnection{
} Its simple database connection class that i generally used to connect to mongo. |
Yes, its fine. but here are few things i found $m = new MongoClient("mongodb://darky:password@localhost:32759/database"); If i use this in my php code, I get same error auth fails. I think i need to setup database name afterwards. |
I modified the DSN, can you try again now? |
Thanks, I just did with tweaking function getDsn and changed this line return "mongodb://{$credentials}" . implode(',', $hosts) . "/{$database}"; return "mongodb://{$credentials}" . implode(',', $hosts); Because database is already selected in constructor like this |
Also can you tell, is this repository https://github.com/navruzm/lmongo |
We both tackle the same problem in different ways, he creates a completely new eloquent/builder interface and I maintain the original eloquent/builder interface. I wanted to be able to switch an existing project from SQL to MongoDB without having to change anything. If you switch to MongoDB with lmongo, you need to completely rewrite your existing code. Even simple things like |
Thanks for telling and yeah your repository looks like i am using mysql way to connect to mongo. Everything fine now. :) |
From what I read on http://docs.mongodb.org/manual/reference/connection-string/ I might have to revert the last commit for some users. If you don't specify a database in the connection string it authenticates to the admin database. Are you sure you have correctly set up permissions etc? |
I am not sure , But let me try with mongodb setup on cloud server ie mongohq.com |
I was unable to connect to a mongolab server because I had no permissions on the admin database. I reverted the changes.
I think your problem is related to incorrect permissions. |
Yes you are right, You will have to revert that commit , for users who have separate username and password for different databases. |
Not sure if this is still relevant or even related but I had the same OP problem and solved it by using db.addUser() after use laravel_database; as per the first block on http://docs.mongodb.org/manual/tutorial/add-user-to-database/ |
I have same problem on Laravel MongoDB, I'm using Laravel 4.2, Mongo 3.2, PHP 5.6 Error File: /var/www/laravel/vendor/jenssegers/mongodb/src/Jenssegers/Mongodb/Connection.php
|
Thank you all, My problem answered here: |
I have an authentication failed issue with mongodb 3.2 and laravel 5.2 I have tested it with just php and mongodb php library like below. require 'vendor/autoload.php'; $result = $collection->find(); And it worked. However, it doesn't work on laravel 5.2 after following the steps that jenssegers/laravel-mongodb mentions. I have added the service provider class to config/app.php and added my mongodb config in config/database.php like below.
In my controller, I put a script like below: class IntroController extends Controller In the Account model: namespace App; I get an error message like below: AuthenticationException in Find.php line 179: Authentication failed. It would be appreciated if you could help me with this issue. Thanks, |
Just in addition to @rkang30 Cheers |
@bke-daniel Did you change your .env file? |
@infernobass7 Sadly I have to answer that with a short and straight: Yes. :/ |
@chinhvowili's solution worked for me, Laravel 5 should take into consideration the default connection configuration required for MongoDB 3. |
Hi
I am using different port and username|password . I get error
Failed to connect to: localhost:32759: Authentication failed
I am sure my username and password are correct . It connects fine via simple php mongoClient class.
Don't know why this happening.
After i reviewed source , it seems ok it should be passing password fine but its not connecting in laravel 4.
The text was updated successfully, but these errors were encountered: