Install Manual - Apache (edit.2016.04.26)
아파치 설치
1. 다운로드
http://www.apachelounge.com/download/
● "D:/_www/_apache" 압축 풀기
2. ServerRoot 변경
"D:/_www/_apache/conf/httpd.conf" 파일 편집
● ServerRoot "D:/_www/_apache"
● Listen 80
● ServerAdmin postmaster@localhost (관리자이메일주소: root@naver.com)
● ServerName localhost:80
● DocumentRoot "D:/_www/_htdocs"
● 접근권한
<Directory />
AllowOverride none
Require all denied
</Directory>
4. 환경 변수 추가
시스템 -> 고급시스템설정 -> 환경변수 -> 시스템변수 -> path 편집
● "D:/_www/_apache/bin"
5. 커멘트에서 아파치 인스톨
vc_redist.x64 _C++ 2015 설치 후
CMD 관리자 권한을 실행
● httpd.exe -k install
● httpd.exe -k start
--- 아파치 웹서버 여러개 띄우기 ---
1. httpd.conf 파일을 다른이름으로 복사
2. 포크 및 설정파일 변경
3. 서비스 등록 및 실행
? 서비스 등록
httpd.exe -k install -n “서비스이름” -f “c:\경로\httpd2.conf”
? 서비스 제거
httpd.exe -k uninstall -n “서비스이름”
? 서비스 설정파일 검사
httpd.exe -n “서비스이름” -t
4. 윈도우 서비스 목록에서 서비스 실행 / 아파치 모니터툴에서 서비스 실행
-
No Image
meta http-equiv="refresh" content="0;URL='http://주소
<!DOCTYPE html> <html> <head> <title>WELCOME</title> <meta http-equiv="refresh" content="0;URL='http://주소'"> </head> </html>Date2020.07.27 Category웹서버 Views246 -
No Image
Install Manual - phpMyAdmin (edit.2016.04.26)
https://www.phpmyadmin.net/ D:\_www\_phpMyAdmin 압축 풀기 phpmyadmin 폴더로 들어가서 config.sample.inc.php 파일을 복사하여 붙인후 config.inc.php 로 파일 이름을 변경 config.inc.php 편집 $cfg['Servers'][$i]['AllowNoPassword'] ...Date2016.04.26 Category웹서버 Views111 -
No Image
Install Manual - MySQL (edit.2016.04.26)
윈도우용 MySQL 5.7 설치 http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.12-winx64.zip http://dev.mysql.com/downloads/mysql/ MySQL에 들어가 보면 MySQL의 다양한 버전이 있어서 무엇을 다운받아야 할지 당황스러울수가 있는데 위 링크를 클릭해...Date2016.04.26 Category웹서버 Views106 -
No Image
Install Manual - PHP (edit.2016.04.26)
1. Visual C++ Redistributable for Visual Studio 2012 설치 경로 : http://www.microsoft.com/en-us/download/details.aspx?id=30679 파일 : vcredist_x64.exe apache v11, php v11 버전들은 Visual C++ Redistributable for Visual Studio 2012 해당 프로그...Date2016.04.26 Category웹서버 Views207 -
No Image
Install Manual - Apache (edit.2016.04.26)
아파치 설치 1. 다운로드 http://www.apachelounge.com/download/ ● "D:/_www/_apache" 압축 풀기 2. ServerRoot 변경 "D:/_www/_apache/conf/httpd.conf" 파일 편집 ● ServerRoot "D:/_www/_apache" ● Listen 80 ● ServerAdmin postmaster@localhost (관리...Date2016.04.26 Category웹서버 Views129 -
No Image
httpd.conf - 아파치 웹 서버 보안
httpd.conf - 아파치 웹 서버 보안 >> 특정 IP(대역)를 사용하는 호스트 차단하기 # vi /usr/local/apache/conf/httpd.conf <Directory /usr/local/apache/htdocs> Order Allow,Deny Deny from 192.168.1 Allow from all </Directory> 해당 ...Date2016.04.08 Category웹서버 Views177