O servidor Apache2 falhou ao iniciar após a ativação de 'mod_rewrite', retorna erros de "Operação não permitida"

0

Estou tentando instalar o cakephp (um framework php) que requer a habilitação do mod_rewrite. Para isso, eu segui a resposta Enable mod_rewrite . Mas depois de reiniciar meu servidor, ele diz:

nitish@nitish-G31T-M7:~$ service apache2 restart

Restarting web server apache2 /usr/sbin/apache2ctl: 87: ulimit: error
setting limit (Operation not permitted) apache2: Could not reliably
determine the server's fully qualified domain name, using 127.0.1.1
for ServerName /usr/sbin/apache2ctl: 87: ulimit: error setting limit
(Operation not permitted) apache2: Could not reliably determine the
server's fully qualified domain name, using 127.0.1.1 for ServerName
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down Unable to open logs

**Action 'start' failed.**

The Apache error log may have more information.

O que isso significa? Como posso ativar mod_rewrite ?

    
por Nitish 04.12.2013 / 03:13

1 resposta

2

Você se lembrou de usar sudo com o comando restart?

Se não, você precisa ter habilidades de superusuário ( sudo ) para reiniciar o Apache. Tente usar sudo service apache2 restart . Você precisa das habilidades de superusuário para encerrar a instância atual e, em seguida, para iniciar uma nova e ligar à porta 80.

    
por Thomas Ward 04.12.2013 / 03:16