Wenn Sie sich diesen Artikel ansehen (Wie aktiviere ich den Fernzugriff auf phpMyAdmin oder phpPgAdmin? ), musste ich mir Virtual Machine ansehen und nicht Amazon Cloud / Bitnami Hosting .
Als ich die /opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
geändert habe Datei zu der folgenden, auf die ich über [PUBLIC_DNS/YOUR_DOMAIN_NAME/IP]/phpmyadmin] zugreifen konnte.
Hauptänderungen sind:
Allow from all
und
Require all granted
Denken Sie nach den Änderungen daran, den Apache-Server neu zu starten . (oder starten Sie Ihre Instanz neu)
sudo /opt/bitnami/ctlscript.sh Apache neu starten
/opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
<Directory "/opt/bitnami/apps/phpmyadmin/htdocs">
# AuthType Basic
# AuthName phpMyAdmin
# AuthUserFile "/opt/bitnami/apache2/users"
# Require valid-user
AllowOverride None
<IfModule php5_module>
php_value upload_max_filesize 80M
php_value post_max_size 80M
</IfModule>
<IfVersion < 2.3 >
Order allow,deny
Allow from all
Satisfy all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
ErrorDocument 403 "For security reasons, this URL is only accesible using localhost (127.0.0.1) as the hostname"
</Directory>
Dokumentreferenz:https://docs.bitnami.com/virtual-machine/components /phpmyadmin/