MySQL ERROR: Can’t connect to MySQL server on ‘xxx.xxx.x.xx’ (13)

MySQL ERROR: Can’t connect to MySQL server on ‘xxx.xxx.xxx.xxx’ (13)
はSELinuxによる接続エラーです。
can_network_connectを有効にするとアクセスできます。

・設定の確認

[root@centos apache]# getsebool httpd_can_network_connect
httpd_can_network_connect --> off

・SE Linuxでhttpd_can_network_connectを有効にする

[root@centos apache]# setsebool -P httpd_can_network_connect 1

・再確認

[root@centos apache]# getsebool httpd_can_network_connect
httpd_can_network_connect --> on

タイトルとURLをコピーしました