PuTTy의 루트 사용자를 통해 내 서버에 로그인하고 여기에 LAMP를 설치하겠습니다. 조명 설치 후 불을 켜주세요센토스 7Apache 가상 호스트를 성공적으로 생성하지만 마지막으로 Apache를 다시 시작하려고 하면 오류가 표시됩니다. 이 문제를 어떻게 해결하나요?
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.
답변1
항상 문제 해결부터 시작하십시오.
이 명령은 오류의 원인을 보여줍니다.
Apache가 있는 CentOS에서는 다음을 사용합니다.
apachectl -t
Apache2가 있는 Ubuntu에서는 다음을 사용하십시오.
apache2ctl -t
일반적으로 이는 매우 사소한 버그일 수 있으므로 오류를 수정하고 Apache 웹 서버를 다시 시작한 후 즐기십시오.
즐거운 코딩하세요.