Reputation: 741
I can not connect to MongoDb using PHP, the error I am getting is
Failed to connect to: 127.0.0.1:27017: Authentication failed on database 'abc' with username 'admin': auth fails
The code that I use to connect is:
<?php
try {
$server = new Mongo("mongodb://admin:[email protected]:27017/abc");
} catch (Exception $e) {
echo $e->getMessage();
}
?>
I have also installed RockMongo which can connect to the database fine.
The control panel that I am using is: ispconfig.org, I have added port 27017 to the firewall via the control panel so it's passing trough.
Upvotes: 0
Views: 1260
Reputation: 151220
So in a nutshell you seem to confusing the default credentials for you RockMongo UI with credentials to connect to MongoDB.
By default on installation, MongoDB has no Authentication turned on. You can configure authentication if you so desire, and even add that configuration to your Rockmongo Setup so that it can work on a privileged user.
All details are in the links provided.
For now just connect as follows:
mongodb://<hostname>/<database>
Provided you have access from your or another machine.
Upvotes: 2