httpd 를 한번도 실행해 주지 않은 상태에서 apachetl configtest 했더니 아래와 같은 오류 메시지가 나오더군요~
[root@ivps ~]# apachectl configtest
AH00526: Syntax error on line 85 of /etc/httpd/conf.d/ssl.conf:
SSLCertificateFile: file '/etc/pki/tls/certs/localhost.crt' does not exist or is empty
[root@ivps ~]# vi /etc/httpd/conf.d/ssl.conf
[root@ivps ~]# ls -l /etc/pki/tls/certs/localhost.crt
ls: cannot access '/etc/pki/tls/certs/localhost.crt': No such file or directory
[root@ivps ~]# systemctl restart httpd
[root@ivps ~]# apachectl configtest
Syntax OK
[root@ivps ~]# ls -l /etc/pki/tls/certs/localhost.crt
-rw-r--r--. 1 root root 3720 Jan 9 05:06 /etc/pki/tls/certs/localhost.crt
httpd 를 한번 실행해주면 되네요~
'LINUX' 카테고리의 다른 글
[CentOS] 파티션타입 Microsoft basic 변경 방법 (0) | 2023.01.30 |
---|---|
[CentOS] proxy_fcgi error AH01071 Primary script unknown (0) | 2023.01.26 |
[CentOS] 8.x Failed loading plugin osmsplugin librepo (0) | 2023.01.06 |
아파치 로그로 특정 날짜 또는 시간대 트래픽 계산 (0) | 2021.09.14 |
[아파치] 하나의 사이트에 서로 다른 PHP 버전 사용 방법 (0) | 2021.06.30 |