팝업레이어 알림

팝업레이어 알림이 없습니다.

Memory

HOME > 공지사항

기타 Xampp localhost --> www.sky.com 설정

페이지 정보

profile_image
작성자 최고관리자
댓글 0건 조회 16,115회 작성일 23-06-11 18:13

본문

XAMPP는 사용하기 편리한 크로스 플랫폼 웹 서버 자유 소프트웨어이다.

아파치와 MariaDB 그리고 PHP Perl phpmyadmin 등이 포함되어 있으며 윈도우 리눅스 맥에서 주로 웹 개발에 사용된다.

X는 크로스 플랫폼을 뜻하며 A는 아파치 M은 마리아DB, P는 PHP , P는 Perl 의 약어이다.


설치는 https://www.apachefriends.org/index.html 이곳에서 버전에 맞게 다운로드 한다.


1. 다운 후 설치 진행시 아래 메세지 창 무시하고 OK 누르면 설치가 진행된다.


cb1ae7ae878843a01422e3d961792b04_1708393436_3498.png
 

위 메세지가 신경 쓰인다면 UAC 해제 후 설치 한다.

예제) 시작 -> 제어판 -> 사용자 계정 -> 사용자 계정 컨트롤 설정 변경 -> -> 설정값 변경  또는 윈도우키 + R을 누른 다음 -> control nusrmgr.cpl 입력 -> 사용자 계정 컨트롤 끄기


cb1ae7ae878843a01422e3d961792b04_1708393436_3852.png



cb1ae7ae878843a01422e3d961792b04_1708393436_4164.png

설치하고자 하는 설정 체크 후 Next
cb1ae7ae878843a01422e3d961792b04_1708393436_4406.png

설치 경로 지정 

Next


cb1ae7ae878843a01422e3d961792b04_1708393436_4606.png

설치 언어는 한글이 없으므로 영어로 선택 Next


cb1ae7ae878843a01422e3d961792b04_1708393436_4814.png

설치 과정


cb1ae7ae878843a01422e3d961792b04_1708393436_5043.png

설치 완료 Finish


cb1ae7ae878843a01422e3d961792b04_1708393436_5288.png


아파치 엑세스 허용
 



하단 그림은 설치 후 Control Panel 실행 화면이다.

6929941f3c1fe0df344c49d84740a43b_1686474283_2137.png
 

Xampp 설치후 localhost 접속할 설정은 윈도우10의 경우 

C:\Windows\System32\drivers\etc\hosts 화일을  notepad 로 수정한다.

아래는 예시이다.


# localhost name resolution is handled within DNS itself.
#   127.0.0.1       localhost
#   ::1             localhost

127.0.0.1       localhost
127.0.0.1       test.php.com
127.0.0.1       test.study.com
127.0.0.1       test.sir.com
127.0.0.1       www.sky.com



그리고 C:\xampp\apache\conf\extra\httpd-vhosts.conf 화일도 수정해 여러 로컬사이트를 등록해서 사용할 수 있다.

<VirtualHost *:80>
    ServerAdmin webmaster@test.php.com
    DocumentRoot "C:/xampp/htdocs/php"
    ServerName test.php.com
    ErrorLog "logs/test.php.com-error.log"
    CustomLog "ltest.php.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
    ServerAdmin webmaster@sky.com
    DocumentRoot "C:/xampp/htdocs/gnu"
    ServerName www.sky.com
    ErrorLog "logs/www.sky.com-error.log"
    CustomLog "logs/www.sky.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
    ServerAdmin webmaster@test.ray.com
    DocumentRoot "C:/xampp/htdocs/ray"
    ServerName test.ray.com
    ErrorLog "logs/test.ray.com-error.log"
    CustomLog "ltest.ray.com-access.log" common
</VirtualHost>
 


설정 후 xampp의 Apache 재시작 한다.


localhsot 대신 www.sky.com 또는 test.ray.com  접속이 가능하다.


윈도우즈 cmd 에서 mysql 패스를 지정한다.

시스템환경변수편집  -> 환경변수 -> 사용자 변수의 편집  -> 새로만들기 -> C:\xampp\mysql\bin 설정

cmd mysql -uroot -p  접속 

댓글목록

등록된 댓글이 없습니다.