phpMyAdmin
 sql >> Base de données >  >> Database Tools >> phpMyAdmin

Impossible de se connecter à phpmyadmin dans l'instance Bitnami hébergée par AWS

En regardant cet article (Comment activer l'accès à distance à phpMyAdmin ou phpPgAdmin ? ), j'avais besoin de regarder Machine virtuelle et non Cloud Amazon / Hébergement Bitnami .

Quand j'ai changé le /opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf fichier au suivant, j'ai pu accéder via [PUBLIC_DNS/YOUR_DOMAIN_NAME/IP]/phpmyadmin].

Les principaux changements étant :

Allow from all

et

Require all granted

Après les modifications, n'oubliez pas de redémarrer le serveur apache . (ou redémarrez votre instance)

sudo /opt/bitnami/ctlscript.sh redémarre apache

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

Référence de la documentation :https://docs.bitnami.com/virtual-machine/components /phpmyadmin/