아무나 빌려가세요
Invalid command 'SSLPassPhraseDialog', perhaps misspelled or defined by a module not included in the server configuration 에러 본문
오늘 배운 프로그래밍
Invalid command 'SSLPassPhraseDialog', perhaps misspelled or defined by a module not included in the server configuration 에러
빌라노바 2023. 10. 31. 15:48말 그대로 SSLPassPhraseDialog 명령어를 인식하지 못한다는 말로 이땐 mode_ssl
이란 패키지를 설치해야 한다.
model_ssl 설치방법
RedHat 계열(centos, oracle linux...)
sudo yum install mod_ssl
debian 계열(ubuntu..)
sudo apt get mod_ssl
필자는 서버의 운영체제가 CENTOS6 이였는데 지원이 중단된 관계로 제대로 설치가 되지 않았다.
그땐 mod_ssl.so
파일을 구하여 httpd-ssl.conf
파일에 직접 모듈을 불러온다.
httpd-ssl.conf
LoadModule ssl_module /usr/local/src/httpd-2.2.17/modules/ssl/mod_ssl.so
Listen 443
아파치를 재실행하면 SSLPassPhraseDialog 명령어를 사용할 수 있다.
'오늘 배운 프로그래밍' 카테고리의 다른 글
mysql 중간데이터 삭제후 순서대로 idx 업데이트 하기 (0) | 2023.11.07 |
---|---|
pm2 /usr/bin/bash:1ELF ^SyntaxError: Invalid or unexpected token 에러 (0) | 2023.11.02 |
리눅스 CPU 사용률, 메모리 ,디스크 상태 명령어 (2) | 2023.10.31 |
double bang - !! (0) | 2021.07.07 |
몽구스 스키마타입에 관하여 (0) | 2021.07.07 |