phpMyAdmin
 sql >> Datenbank >  >> Database Tools >> phpMyAdmin

Installieren von phpMyAdmin auf einer Amazon EC2-Instance

Ich musste /etc/httpd/conf.d/phpMyAdmin.conf aktualisieren um entfernte Benutzer zuzulassen.

Ich habe gerade den Inhalt des ersten <directory> ersetzt so taggen...

Ich habe entfernt:

<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
  </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>

Und ersetzte es durch dieses:

<Directory /usr/share/phpMyAdmin/>
 AddDefaultCharset UTF-8

 Order allow,deny
 Allow from all
</Directory>

Und den Server neu gestartet:sudo service httpd restart

Funktioniert jetzt!