Unable to install apache as a service for windows with name wampstackApache 해결법

2017. 7. 20. 23:53오류 해결법 공유/Bitnami


Bitnami 사용 중 발생하는 오류에 대한 글입니다. 생활코딩 수강하다가 이 오류 때문에 골치아팠기 때문에 올립니다.


Unable to install apache as a service for windows with name wampstackApache 해결법



------------------------------


원문 : https://community.bitnami.com/t/unable-to-install-apache-as-a-service-for-windows-with-name-wordpressapache/40714



I found the log files and was finally able to get the WAMP stack to run.
The httpd.conf contained the following at the bottom of the file:


로그 파일을 찾아냈고 결국 WAMP stack을 실행시키는 데 성공했습니다.

httpd.conf 은 파일 아래에 이런 내용을 포함하고 있는데요.


(httpd.conf는 wamptstack 폴더 안 apache2 속 conf 폴더에 있는 텍스트 파일입니다)

PHPIniDir "C:/Bitnami/wampstack-7.0.11-2/php"
SetEnv OPENSSL_CONF "C:\Bitnami\wampstack-7.0.11-2/apache2/conf/openssl.cnf"
SetEnv PATH "C:\Bitnami\wampstack-7.0.11-2/apache2/bin;${PATH}"
Include "conf/deflate.conf"
Include "C:/Bitnami/wampstack-7.0.11-2/apache2/conf/bitnami/bitnami.conf"

Which I changed to the following:


그리고 이렇게 수정했습니다 :

PHPIniDir "C:/Bitnami/wampstack-7.0.11-2/php"
SetEnv OPENSSL_CONF "C:/Bitnami/wampstack-7.0.11-2/apache2/conf/openssl.cnf"
SetEnv PATH "C:/Bitnami/wampstack-7.0.11-2/apache2/bin"
Include "conf/deflate.conf"
Include "C:/Bitnami/wampstack-7.0.11-2/apache2/conf/bitnami/bitnami.conf"

I havnt tested it thoroughly yet, but at least apache starts and I can see the Bitnamie start-page ..


아직 테스트해보진 않았는데, 아파치 웹서버가 구동되고 Bitnami 스타트 페이지가 보이네요


------------------------------


저는 이거보고 고쳤습니다 ;P 알아가시는 분 있으면 좋겠어요


------------------------------


저는 관련 지식이 전무하며 그저 stackoverflow에서 발견한 결과를를 업로드한 것 뿐입니다. 감사합니다.