Não é possível reiniciar o servidor da web do apache - ubuntu

0

Estou editando um módulo do apache no Ubuntu e quando tento reiniciar o servidor usando service apache2 restart estou recebendo a seguinte mensagem:

Job for apache2.service failed because the control process exited with error code. See "systemctl status apache2.service" and "journalctl -xe" for details.

executando o comando systemctl status apache2.service

● apache2.service - LSB: Apache2 web server
   Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
  Drop-In: /lib/systemd/system/apache2.service.d
           └─apache2-systemd.conf
   Active: failed (Result: exit-code) since Mon 2017-09-04 10:53:07 PDT; 3min 21s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 2594 ExecStart=/etc/init.d/apache2 start (code=exited, status=1/FAILURE)

Sep 04 10:53:07 ubuntu apache2[2594]:  *
Sep 04 10:53:07 ubuntu apache2[2594]:  * The apache2 configtest failed.
Sep 04 10:53:07 ubuntu apache2[2594]: Output of config test was:
Sep 04 10:53:07 ubuntu apache2[2594]: apache2: Syntax error on line 140 of /etc/apache2/apache2.conf: Syntax error on line 2 o
Sep 04 10:53:07 ubuntu apache2[2594]: Action 'configtest' failed.
Sep 04 10:53:07 ubuntu apache2[2594]: The Apache error log may have more information.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Control process exited, code=exited status=1
Sep 04 10:53:07 ubuntu systemd[1]: Failed to start LSB: Apache2 web server.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Unit entered failed state.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Failed with result 'exit-code'.

e journalctl -xe

Sep 04 10:53:07 ubuntu systemd[1]: Starting LSB: Apache2 web server...
-- Subject: Unit apache2.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apache2.service has begun starting up.
Sep 04 10:53:07 ubuntu apache2[2594]:  * Starting Apache httpd web server apache2
Sep 04 10:53:07 ubuntu apache2[2594]:  *
Sep 04 10:53:07 ubuntu apache2[2594]:  * The apache2 configtest failed.
Sep 04 10:53:07 ubuntu apache2[2594]: Output of config test was:
Sep 04 10:53:07 ubuntu apache2[2594]: apache2: Syntax error on line 140 of /etc/apache2/apache2.conf: Syntax error on line 2 o
Sep 04 10:53:07 ubuntu apache2[2594]: Action 'configtest' failed.
Sep 04 10:53:07 ubuntu apache2[2594]: The Apache error log may have more information.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Control process exited, code=exited status=1
Sep 04 10:53:07 ubuntu systemd[1]: Failed to start LSB: Apache2 web server.
-- Subject: Unit apache2.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apache2.service has failed.
-- 
-- The result is failed.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Unit entered failed state.
Sep 04 10:53:07 ubuntu systemd[1]: apache2.service: Failed with result 'exit-code'.
Sep 04 10:53:07 ubuntu polkitd(authority=local)[1030]: Unregistered Authentication Agent for unix-process:2581:81632 (system b
Sep 04 10:54:56 ubuntu systemd[1]: Starting Cleanup of Temporary Directories...
-- Subject: Unit systemd-tmpfiles-clean.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.service has begun starting up.
Sep 04 10:54:56 ubuntu systemd-tmpfiles[2610]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 04 10:54:56 ubuntu systemd[1]: Started Cleanup of Temporary Directories.
-- Subject: Unit systemd-tmpfiles-clean.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.service has finished starting up.
-- 
-- The start-up result is done.
lines 2223-2262/2262 (END)

meu apache2.conf não tem 140 linhas porque é gerado com base em todos os arquivos conf dos meus módulos.

Por favor, como posso investigar mais?

    
por eeadev 04.09.2017 / 18:10

1 resposta

1

Como corrigir Job para apache2.service falhou porque o processo de controle foi encerrado com o código de erro

Há muitas coisas que podem dar errado, o que pode impedir que o seu servidor da web apache seja iniciado corretamente ou de forma alguma. Isso pode ser apenas um ponto-e-vírgula, um caractere extra ou um diretório inválido, etc.

Para corrigir o erro, você deve rastrear o erro ** primeiro e simplesmente corrigi-lo . * É muito simples do que você pensou, acredite em mim. ***

Tente isto:

Abra o seu terminal e digite:

apache2ctl -t

O comando acima irá levá-lo ao erro diretamente em questão, você terá uma idéia de como corrigi-lo, se não informar o seu erro aqui e todos nós podemos fornecer ajuda.

Eu acredito em um trabalho em equipe, espero que isso ajude.

    
por Prince Adeyemi 07.09.2017 / 02:53