# dnf update --refresh
# dnf install dnf-plugin-system-upgrade
# dnf system-upgrade download --releasever=23
# dnf system-upgrade reboot
I checked by web page and I got,
ERROR: SQLSTATE[08006] [7] could not connect to server:
Permission denied Is the server running on host
"localhost" (::1) and accepting TCP/IP connections on port
5432? could not connect to server: Permission denied Is
the server running on host "localhost" (127.0.0.1) and
accepting TCP/IP connections on port 5432?
I knew I set some boolean --off to --on, so I grepped the
boolean list.
# semanage boolean --list | grep httpd
I found this despite my difinition.
httpd_can_network_connect_db (off , off) Allow httpd
to can network connect db
So, I set the value again.
# semanage boolean --modify httpd_can_network_connect_db
--on
------------------------------------------------------------------------------------
No problem otherwise, thanks.