Não foi possível iniciar o servidor apache2

3

Estou recebendo os seguintes erros ao iniciar o servidor apache2 -

The apache2 configtest failed.
Output of config test was:
mkdir: cannot create directory '/var/run/apache2': Permission denied
chown: changing ownership of '/var/lock/apache2.26wFR2Eely': Operation not permitted

Eu usei o seguinte comando -

sudo service apache2 start
    
por Mostafiz Ur Rahman 15.01.2017 / 12:55

1 resposta

3

Coisas a verificar

  • você tem outra instância do apache em execução?

    ps aux | grep apache2
    

    para verificar se você tem e

    pkill -9 apache
    

    e inicie o apache novamente.

  • se não verificar com ...

    ls -l /var/lock/apache2.26wFR2Eely
    

    o nome de usuário e o grupo do arquivo. O nome de usuário e o grupo precisam corresponder ao que você configurou no apache. Se não remover este arquivo e iniciar o apache novamente.

por Rinzwind 15.01.2017 / 13:01