PHP:Mongodb使用IP连接到服务器

发布于 2024-12-14 15:48:46 字数 377 浏览 0 评论 0原文

我正在尝试连接到本地 php 文件中的 mongodb 服务器。 mongodb 服务器位于另一台我知道 IP 的服务器上。服务器上没有为 mongodb 设置用户名和密码。我也按照系统要求安装了 mongodb 的 php 驱动程序。

Mongodb 在服务器上运行良好。我已经查过了。

当我运行我的 php 脚本时,它给出错误: *网站在检索 http://localhost/test/mongo_test.php 时遇到错误。它可能因维护而停机或配置不正确。*

我还需要配置其他内容吗?如果是的话在哪里?又如何呢?

I am trying to connect to a mongodb server in my php file which is on my local. The mongodb server is on another server whose IP i know. There is no username and password set on the server for the mongodb. I have installed the php driver for mongodb too as required on my system.

Mongodb is working fine on the server. I have checked that.

When i run my php script its giving error:
*The website encountered an error while retrieving http://localhost/test/mongo_test.php. It may be down for maintenance or configured incorrectly.*

Is there anything else i need to configure ? If yes where? and also how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┼── 2024-12-21 15:48:46

出于安全目的,服务器很可能设置了防火墙,不允许外部访问 MongoDB 运行的特定端口。

The server most likely has a firewall in place not allowing outside access to the particular port MongoDB is running on for security purposes.

留一抹残留的笑 2024-12-21 15:48:46

我们必须在配置文件中设置bind_ip: 0.0.0.0

在这里阅读更多内容: https://docs.mongodb.com/manual /reference/configuration-options/#file-format

"要绑定所有 IPv4 地址,可以指定绑定 ip 地址 0.0.0.0。要绑定所有 IPv4 和 IPv6 地址,可以指定绑定IP 地址 ::,0.0.0.0,或者使用新的 net.bindIpAll 设置或新的命令行选项 --bind_ip_all。”

https://docs.mongodb.com/manual/core/security-mongodb -配置/

We had to set bind_ip: 0.0.0.0 in the config file.

Read more here: https://docs.mongodb.com/manual/reference/configuration-options/#file-format

"To bind to all IPv4 addresses, you can specify the bind ip address of 0.0.0.0. To bind to all IPv4 and IPv6 addresses, you can specify the bind ip address of ::,0.0.0.0 or alternatively, use the new net.bindIpAll setting or the new command-line option --bind_ip_all."

https://docs.mongodb.com/manual/core/security-mongodb-configuration/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文