Keine der oben genannten Konfigurationen hat bei mir auf meinem CentOS 7-Server funktioniert. Nach stundenlanger Suche hat das bei mir funktioniert:
Bearbeiten Sie die Datei phpMyAdmin.conf
sudo nano /etc/httpd/conf.d/phpMyAdmin.conf
Und ersetzen Sie das vorhandene <Directory> ... </Directory>
Knoten mit folgendem:
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
#Require ip 127.0.0.1
#Require ip ::1
Require all granted
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>