Apache가 시작되지 않고 명백한 오류가 없습니다.

Apache가 시작되지 않고 명백한 오류가 없습니다.

Centos 7을 새로 설치하고 있는데 Apache용 VirtualHost를 설정한 후 시작되지 않습니다. 명백한 오류는 없지만 journalctl -xe여기에는 관계없이 출력이 있습니다.

-- Unit httpd.service has begun starting up.
Sep 30 23:28:41 vps97148.vps.ovh.ca systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
Sep 30 23:28:41 vps97148.vps.ovh.ca kill[1424]: kill: cannot find process ""
Sep 30 23:28:41 vps97148.vps.ovh.ca systemd[1]: httpd.service: control process exited, code=exited status=1
Sep 30 23:28:41 vps97148.vps.ovh.ca systemd[1]: Failed to start The Apache HTTP Server.
-- Subject: Unit httpd.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit httpd.service has failed.
--
-- The result is failed.
Sep 30 23:28:41 vps97148.vps.ovh.ca systemd[1]: Unit httpd.service entered failed state.
Sep 30 23:28:41 vps97148.vps.ovh.ca systemd[1]: httpd.service failed.
Sep 30 23:28:41 vps97148.vps.ovh.ca polkitd[1082]: Unregistered Authentication Agent for unix-process:1408:672266 (system bus name :1.29, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)

httpd -tapachectl configtest내 구문이 괜찮다고 말해 주세요 .

apachectl -S출력을 제공하지 않습니다.

내 domainname.com.conf는 다음과 같습니다.

<VirtualHost *:80>
    ServerName domainname.com
    DocumentRoot /var/www/domainname.com/public_html
    ErrorLog /var/www/domainname.com/error.log
    CustomLog /var/www/domainname.com/requests.log combined
</VirtualHost>

나에게 도움이 있나요? 아니면 내가 뭘 잘못하고 있는지 말해 줄 수 있는 사람이 있나요?

여기에 몇 가지 추가 정보가 있습니다.

최상위 구성의 맨 아래에는 Include sites-enabled/*.conf내 domainname.com.conf가 있는 곳이라는 줄이 있습니다.

로그 디렉터리가 존재하며 로그에 액세스할 수 있습니다.

DocumentRoot디렉토리를 가리킵니다. 서버는 ServerName항목을 확인할 수 있으며 서버의 IP를 다시 가리킵니다.

관련 정보