windows APM 환경 설치(Apache)
2017. 10. 25. 13:54
bitnami xampp 처럼 한방에 APM을 설치해주는 프로그램도 있다. 링크
해당 포스트에선 Windows 에서 APM 환경을 구성하는 방법을 알아본다.
1. A(Apache 2.4)
web server.
https://www.apachelounge.com/download/에서 환경에 맞는 zip 다운로드
Windwos 10 64bit 기준
httpd-2.4.29-Win64-VC15.zip 다운로드
"""Be sure !! that you have installed the latest C++ Redistributable Visual Studio 2017 : vc_redist_x64 or vc_redist_x86.""" 에 따라서
https://go.microsoft.com/fwlink/?LinkId=746572에서 64bit 다운 후 apache 다운로드
C:\에 압축 해제 -> Apache24로 rename
httpd.conf에서 확인할 내용
ServerRoot "C:/Apache24"
Listen 80
DocumentRoot "C:/Apache24/htdocs"
<Direct "C:/Apache24/htdocs" >
ServerName localhost:80
환경변수에서 Path에 C:\Apache24\bin 추가
관리자 권한 cmd에서
httpd -k install
후 방화벽 설정,
httpd -k start
httpd -k stop
httpd -k restart
httpd -k uninstall