在 EC2 上,使用 PHP 连接 Mongodb 的权限被拒绝

在 EC2 上,使用 PHP 连接 Mongodb 的权限被拒绝

我无法使用 PHP 连接到远程 EC2 服务器,因为我的权限被拒绝。但是我可以通过命令行从同一台服务器进行远程连接,因此防火墙设置似乎没有问题,bindIp 也正确,因此似乎只有 PHP 存在此连接问题。服务器是:

CentOS Linux release 7.1.1503 (Core)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

CentOS Linux release 7.1.1503 (Core)
CentOS Linux release 7.1.1503 (Core)

答案1

我找到了一个解决方案。看来httpd_can_network_connect默认情况下是关闭的。

运行此命令来启用:

$ sudo /usr/sbin/setsebool -P httpd_can_network_connect 1

并重新启动 Apache:

$ sudo apachectl restart

相关内容