Erro do Servidor Host Apache Virtual ao Reiniciar

0

Vou fazer o login no meu servidor através do usuário root no PuTTy e instalar o LAMP nele. Depois de instalar Lamp, no Centos 7 eu farei o Apache Virtual Host com sucesso, mas finalmente quando eu tentar reiniciar o Apache, ele mostra um erro. Como resolver este problema?

systemctl status httpd.service

**Error=>>>>>>>**

● httpd.service - The Apache HTTP Server

Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)

Active: failed (Result: exit-code) since Thu 2017-08-24 11:38:04 EDT; 10s ago

Docs: man:httpd(8)

        man:apachectl(8)

Process: 7029 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, 

status=1/FAILURE)

  Process: 7028 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, 

status=1/FAILURE)

 Main PID: 7028 (code=exited, status=1/FAILURE)

Aug 24 11:38:04 example.com systemd[1]: Starting The Apache HTTP Server...

Aug 24 11:38:04 example.com systemd[1]: httpd.service: main process exite...E

Aug 24 11:38:04 example.com kill[7029]: kill: cannot find process ""

Aug 24 11:38:04 example.com systemd[1]: httpd.service: control process ex...1

Aug 24 11:38:04 example.com systemd[1]: Failed to start The Apache HTTP S....

Aug 24 11:38:04 example.com systemd[1]: Unit httpd.service entered failed....

Aug 24 11:38:04 example.com systemd[1]: httpd.service failed.

Hint: Some lines were ellipsized, use -l to show in full.
    
por SA Sheikh 25.08.2017 / 08:14

1 resposta

0

Sempre comece com um esforço de solução de problemas.

Este comando mostrará o que causou o erro:

No CentOS com Apache, por favor use

apachectl -t

No Ubuntu com o Apache2, por favor use

apache2ctl -t

Normalmente isso pode ser um erro muito pequeno, corrija o erro, reinicie o servidor web apache e aproveite.

Codificação feliz.

    
por 26.08.2017 / 11:04