비대화식으로 Apache HTTPD 웹 서버 시작

비대화식으로 Apache HTTPD 웹 서버 시작

Apache httpd 웹 서버를 시작할 때 표시되는 비밀번호를 비대화식으로 제공하고 싶습니다.

비밀번호는 변수입니다.

다음과 같이 수동으로 비밀번호를 묻고 입력할 필요가 없습니다.

/web/apps/perf/apache/2.4.46/https-model/bin/apachectl -k start
Apache/2.4.46 mod_ssl (Pass Phrase Dialog)
Some of your private key files are encrypted for security reasons.
In order to read them you have to provide the pass phrases.

Private key model.com:443:0 (/web/apps/perf/apache/2.4.46/https-model/ssl/model.key)
Enter pass phrase:

다음 옵션을 시도했지만 그 중 아무 것도 도움이 되지 않았습니다.

echo -n "mypassword" | /web/apps/perf/apache/2.4.46/https-model/bin/apachectl -k start
echo "mypassword" >> /web/apps/perf/apache/2.4.46/https-model/bin/apachectl -k start
/web/apps/perf/apache/2.4.46/https-model/bin/apachectl -k start << echo "mypassword"
/web/apps/perf/apache/2.4.46/https-model/bin/apachectl -k start << cat mypasswordfile (where mypasswordfile is a file having the password.)

뭔가 제안해주실 수 있나요?

답변1

SSL 인증서 개인 키가 비밀번호로 보호되어 있는 것 같습니다. 가장 좋고 쉬운 방법은 키에서 비밀번호를 제거하는 것인 경우가 많습니다.

openssl rsa -in [original.key] -out [new.key]

키의 비밀번호를 입력하라는 메시지가 표시됩니다. 실행 후 new.key에는 비밀번호가 없습니다. 이를 바꾸거나 Apache가 "새" 생성된 키를 가리키도록 할 수 있습니다.

어떤 이유로 개인 키에 대한 비밀번호를 설정하려는 경우 다음 방법을 사용할 수 있습니다.https://serverfault.com/a/160835

관련 정보