Erro de permissão no apache

1. Erro de permissão no apache

reinaldo gomes pereira
heynaldho

(usa Debian)

Enviado em 28/11/2019 - 12:00h

Prezados,

Estou com problemas para acessar aplicações no apache:

Forbidden

You don't have permission to access this resource.

Utilizo o Ubuntu 18. Vi em alguns posts na net que preciso dar permissões em algumas pastas mas, não consegui resolver.
Alguém pode me ajudar?






  


2. Re: Erro de permissão no apache

Sandro Marcell
SMarcell

(usa Slackware)

Enviado em 28/11/2019 - 16:04h

Acesse a pasta raiz do seu servidor web e execute os seguintes comandos.

# chown -R www-data:www-data *
# find . -type f -exec chmod 644 {} \;
# find . -type d -exec chmod 755 {} \;


Onde 'www-data' é o usuário que executa o seu servidor web.




3. Erro de permissão no apache

reinaldo gomes pereira
heynaldho

(usa Debian)

Enviado em 03/12/2019 - 16:03h

Feito a alteração a mensagem agora é essa: You don't have permission to access this resource.Server unable to read htaccess file, denying access to be safe


4. Re: Erro de permissão no apache

Adriano Santos Lima
mastergbi

(usa Slackware)

Enviado em 03/12/2019 - 17:13h

Talvez vc precise de permissão para acessar seu diretório "DocumentRoot"

Veja como está seu DocumentRoot

nano /etc/apache2/sites-enabled/000-default.conf 


Procure por algo desse tipo:


DocumentRoot /var/www/html



Esse é seu diretorio root, na qual o apache está publicando...

Agora vá até seu apache2.conf

nano /etc/apache2/apache2.conf 


Adicione isso:

<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
Order allow,deny
allow from all
</Directory>


Depois reinicie o apache:

service apache2 restart 




*Obs: Se o DocumentRoot do seu site/sistema for algo do tipo "/www/seusite" coloque isso no lugar do "/var/www/html"

*Obs: Se isso não resolver vc tem alguma linha no seu .htaccess mal configurado ou indicando uma pasta sem permissão. caso seja o caso, você pode postar o conteúdo dele aqui para verificarmos..


5. Re: Erro de permissão no apache

reinaldo gomes pereira
heynaldho

(usa Debian)

Enviado em 04/12/2019 - 14:35h

Mastergbi, obrigado por responder!
Executei todos os procedimentos descritos e mesmo assim não funfou. Segue o log do apache:
[Wed Dec 04 00:09:16.589157 2019] [mpm_prefork:notice] [pid 17094] AH00163: Apache/2.4.29 (Ubuntu) mod_perl/2.0.10 Perl/v5.26.1 configured -- resuming normal operations
[Wed Dec 04 00:09:16.589207 2019] [core:notice] [pid 17094] AH00094: Command line: '/usr/sbin/apache2'
[Wed Dec 04 13:37:20.147709 2019] [mpm_prefork:notice] [pid 17094] AH00169: caught SIGTERM, shutting down
[Wed Dec 04 13:37:21.868708 2019] [mpm_prefork:notice] [pid 32575] AH00163: Apache/2.4.29 (Ubuntu) mod_perl/2.0.10 Perl/v5.26.1 configured -- resuming normal operations
[Wed Dec 04 13:37:21.868797 2019] [core:notice] [pid 32575] AH00094: Command line: '/usr/sbin/apache2'
[Wed Dec 04 13:37:37.860299 2019] [core:crit] [pid 32577] (13)Permission denied: [client 192.168.1.45:1558] AH00529: /etc/apache2/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/etc/apache2/' is executable
[Wed Dec 04 13:46:38.228596 2019] [mpm_prefork:notice] [pid 32575] AH00169: caught SIGTERM, shutting down
[Wed Dec 04 13:46:39.382093 2019] [mpm_prefork:notice] [pid 32731] AH00163: Apache/2.4.29 (Ubuntu) mod_perl/2.0.10 Perl/v5.26.1 configured -- resuming normal operations
[Wed Dec 04 13:46:39.382172 2019] [core:notice] [pid 32731] AH00094: Command line: '/usr/sbin/apache2'
[Wed Dec 04 13:46:59.262754 2019] [core:crit] [pid 32732] (13)Permission denied: [client 192.168.1.45:1600] AH00529: /etc/apache2/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable and that '/etc/apache2/' is executable
[Wed Dec 04 13:55:03.780662 2019] [mpm_prefork:notice] [pid 32731] AH00169: caught SIGTERM, shutting down
[Wed Dec 04 13:55:05.737998 2019] [mpm_prefork:notice] [pid 32771] AH00163: Apache/2.4.29 (Ubuntu) mod_perl/2.0.10 Perl/v5.26.1 configured -- resuming normal operations
[Wed Dec 04 13:55:05.738086 2019] [core:notice] [pid 32771] AH00094: Command line: '/usr/sbin/apache2'
[Wed Dec 04 13:55:24.528372 2019] [core:crit] [pid 32773] (13)Permission denied: [client 192.168.1.45:1941] AH0052@@@
"/var/log/apache2/error.log" 24L, 3891C

Arquivo htacess:

# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com

ServerAdmin webmaster@localhost
#DocumentRoot /var/www/html
DocumentRoot /var/www/html





<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted

</Directory>


# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.









Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts