[network] Installing the latest version of Apache 아파치 최신버전 설치하기




APM 구축을 위해서 먼저 아파치를 설치하기로 하였습니다.


저는  아래 주소에서 다운을 받았습니다.



1. win64는 64비트 win32 는 32비트이니 전 64비트를 받았습니다.


그리고 VC15지원인데 저는 C++ 2017이 없어서 빨간 박스를 클릭해 다운받았습니다.


이게 없으면 에러가 뜬다고 하였습니다.




2. 압축을 푸는 경로는 다음과 같이 하였습니다.


원하는 경로에 풀면 됩니다.




3. httpd.conf라는 파일을 수정해줘야합니다.


conf 폴더 안에있는 httpd.conf를 메모장으로 열었습니다.




4. 먼저 serverroot를 검색하여 빨간 박스안을 아파치가 설치된 경로로 변경하였습니다.


Define 부분을 바꾸면 그 밑 serverroot는 안바꿔도 됩니다.




5. Listen부분은 포트부분인데 저는 80 그대로 썼습니다.




6. documentRoot는 파일이 참고할 경로은데 위에서 Define 해줬으므로

저는 변경하지 않았습니다.


경로 뒷부분인 htdocs가 있는지 학인 해보시길 바랍니다.




7. servername 은 앞에 #이 있는데 제거하고 다음과 같이 만들었습니다.


이 설정을 하면 인터넷이 접속 안되어 있어도 localhost는 접속 된다고 합니다.




8. 다음으로 아파치 서비스를 등록하였습니다.


컴퓨터- 고급 시스템 설정 - 환경변수 에 들어갑니다.




9. PATH를 더블클릭합니다.




10. 새로 만들기를 클릭하고 아파치의 bin파일이 있는 경로를 추가합니다.




11. 다음으로 아파치를 실행 시켰습니다.


cmd창을 관리자 모드로 들어갑니다.


현재위치를 아파치의 bin파일로 이동합니다.


httpd.exe -k install로 설치를 하고

httpd.exe -k start로 실행을 합니다.




12. 마지막으로 아파치가 실행 되었는지 확인을 하였습니다.


인터넷에 http://localhost라고 입력하고 엔터를 치면 다음과 같은 화면이 나왔습니다.


To install APM, I decided to install Apache first.



I received a download from the address below.



https://www.apachelounge.com/download/





1. win64 is 64 bit win32 is 32 bit, so I got 64 bit.


And I support VC15, but I do not have C ++ 2017, so I clicked the red box and downloaded it.


If it is not there, I get an error.






2. The decompression path is as follows.


You can solve it in the desired path.






3. You need to edit httpd.conf file.


I opened httpd.conf in the conf folder with Notepad.






4. First we searched the serverroot and changed the red box to the path where Apache was installed.


If you change the Define part, you can change the serverroot underneath.






5. Listen is part of the port, but I wrote it as 80.






6. Since documentRoot is define above the path to reference the file


I have not changed.


Please check if there is a htdocs at the end of the path.






7. The servername is preceded by a # and we have created it like this:


With this setting, localhost is connected even if the Internet is not connected.






8. Next, I registered my Apache service.


Enter Computer - Advanced System Settings - Environment Variables.






9. Double-click PATH.






10. Click New and add the path to the Apache bin file.






11. Next I started Apache.


Enter the cmd window into administrator mode.


Move your current location to Apache's bin file.


Install with httpd.exe -k install


Run httpd.exe with -k start.






12. Finally, I checked to see if Apache was running.


Enter http: // localhost on the Internet and hit enter to bring up the following screen.

Comments