我在localhost中测试mongoDB,并在localhost中成功安装了mongoDB。我试图在localhost中使用PHP连接mongoDB。
它会抛出“身份验证失败”之类的错误。它已在cmd提示符下成功验证。
$ username ='testUser';
$ password ='testPassword';
$ m = new MongoClient(“mongodb:// testUser:testPassword @ localhost”,array(“db”=>“testdb”));
致命错误:未捕获的异常'MongoConnectionException',消息'无法连接到:localhost:27017:无法建立连接,因为目标计算机主动拒绝它。 '在E:\ xampp \ htdocs \ xampp \ test.php:3堆栈跟踪:#0 E:\ xampp \ htdocs \ xampp \ test.php(3):MongoClient-> __ construct('localhost:27017',Array在第3行的E:\ xampp \ htdocs \ xampp \ test.php中抛出#1 {main}
我还将localhost更改为ip(127.0.0.1)地址但没有用。提前致谢