Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用以下 PHP 代码连接到 MongoDB:
$m = new MongoClient("mongodb://localhost:27017");
但是,我收到以下错误:
致命错误:未捕获的异常“MongoConnectionException”,消息“无法连接到:localhost:27017:未知错误”
我尝试了许多在各种博客中发布的连接字符串的可能性;没有任何帮助。有没有人有任何想法?
如果有人遇到此问题,请先参考以下链接。
连接字符串 URI 格式
PHP MongoClient
在我的情况下,迈克菲防火墙导致了这个问题。当我“关闭”防火墙时,它开始工作..