我想一次让SE
Linux在服务器上运行,以提高安全性.
我通常禁用SELinux来使任何工作.
如何告诉SELinux允许 MySQL连接?
我在文档中找到的最多的是来自MysqL.com的这一行:
我通常禁用SELinux来使任何工作.
如何告诉SELinux允许 MySQL连接?
我在文档中找到的最多的是来自MysqL.com的这一行:
If you are running under Linux and Security-Enhanced Linux (SELinux) is enabled,make sure you have disabled SELinux protection for the MysqLd process.
哇…这真的很有帮助.
解决方法
检查SELinux
sestatus
查看httpd进程上设置的标志
getsebool -a | grep httpd
允许Apache通过SELinux连接到远程数据库
setsebool httpd_can_network_connect_db 1
使用-P选项可使更改成为永久更改.如果没有此选项,布尔值将在重新启动时重置为0.
setsebool -P httpd_can_network_connect_db 1