Pasta phpmyadmin do CentOS proibida

0

instalado php5, apache2, LAMP, PHPMyAdmin mas se eu digitar meu IP e PHPMyAdmin como este link ele está mostrando o erro

Forbidden
You don't have permission to access /PHPMyAdmin/ on this server.

Eu editei /etc/httpd/conf.d/phpmyadmin.conf esse arquivo também adicionou meu endereço IP e permiti meu endereço IP, ainda está mostrando o erro acima,

meu arquivo phpmyadmin.conf é assim agora

# phpMyAdmin - Web based MySQL browser written in php
#
# Allows only localhost by default
#
# But allowing phpMyAdmin to anyone other than localhost should be considered
# dangerous unless properly secured by SSL

Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin

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

<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 27.34.248.3
#Require ip ::1
</RequireAny>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow

como posso acessar a pasta PHPMyAdmin, para que eu possa gerenciar o banco de dados facilmente, Estou usando o Redhat Linux 7.3, todos os pacotes estão atualizados!

por favor me ajude!

    
por rakcode 02.02.2017 / 16:53

3 respostas

0

Experimente esta configuração:

  <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 ip 27.34.248.3
   </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
   Allow from 27.34.248.3
  </IfModule>
  </Directory>

Reinicie o serviço Apache:

systemctl restart httpd
    
por 02.02.2017 / 18:08
0

Você precisa alterar o arquivo de configuração do apache do phpmyadmin

a localização é /etc/httpd/conf.d/phpMyAdmin.conf

Configuração padrão é:

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

Altere para:

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

   <IfModule mod_authz_core.c>
     # Apache 2.4
     <RequireAny>
       Require all granted
     </RequireAny>
   </IfModule>
   <IfModule !mod_authz_core.c>
     # Apache 2.2
     Order Deny,Allow
     Allow from All
   </IfModule>
</Directory>

e reinicie o apache usando o comando

# service httpd restart

OR

# systemctl restart  httpd.service
    
por 02.02.2017 / 19:35
0

Isso funciona. Centos 7.

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

   <IfModule mod_authz_core.c>
     # Apache 2.4
     <RequireAny>
       Require all granted
     </RequireAny>
   </IfModule>
   <IfModule !mod_authz_core.c>
     # Apache 2.2
     Order Deny,Allow
     Allow from All
   </IfModule>
</Directory>
    
por 08.03.2018 / 21:50