SQLSTATE[08006] [7] could not connect to server: Permission denied

Сообщение об ошибке

Deprecated function: The each() function is deprecated. This message will be suppressed on further calls в функции menu_set_active_trail() (строка 2405 в файле /var/www/notes7/includes/menu.inc).

Connection Error: SQLSTATE[08006] [7] could not connect to server: Permission denied Is the server running on host "host" and accepting TCP/IP connections on port 5432?

Такое сообщение можно увидеть, когда включен selinux, который блокирует веб серверу возможность создавать http соединения.

# /usr/sbin/sestatus | grep SELinux
SELinux status:                 enabled
SELinuxfs mount:                /selinux
 
#  /usr/sbin/sestatus | grep mode
Current mode:                   enforcing

Можно дать разрешение такой командой:

setsebool httpd_can_network_connect 1

или отключить selinux:

echo 0 > /selinux/enforce

Добавить комментарий

CAPTCHA