Notice
Recent Posts
Recent Comments
준호씨의 블로그
특정 도메인의 IP가 변경되었을 때 유용한 팁 본문
반응형
얼마전 회사가 사무실을 이전하고 서버와 도메인 세팅이 이루어 지지 않아 며칠간 회사 도메인으로 연결된 회사홈페이지, CVS, wiki 등등의 서버들을 도메인으로 접속을 할 수 없게 되어 버렸다.
갑자기 CVS가 안되니 개발중인 프로그램의 버전관리가 안되게 되었다.
다행히 회사 내부 IP로 CVS서버가 오픈되었고 어떻게 CVS서버를 사용할까 여러고민을 하였다.
CVS폴더의 Root파일에 지정된 경로를 다 바꿔버릴까 생각하다가 예전에 홈페이지를 만들다가 한가지 팁이 하나 생각났다. 아마 동아리방에서 성철이형에게서 들었던거 같다.
그 내용은 나의 잡다 자료 모음 홈페이지에 기록되어 있었다.
주소 : http://hanulso.knu.ac.kr/~junho85/bbs/zboard.php?id=bbs_tip&no=101
C:\WINDOWS\system32\drivers\etc\hosts
바로 이 파일을 수정하는 것
파일의 내용을 보면
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
이런식으로 되어 있다.
우리가 localhost로 접속하면 자동으로 127.0.0.1이 되는 원리와 같다.
마지막에
192.168.0.6 cvs.웹주소.com
이 한줄을 추가 시켜 주면 기존에 쓰던 그대로 CVS서버 사용가능~
메신저 서버나 개발서버 등으로의 응용도 가능하다.
반응형
'개발이야기' 카테고리의 다른 글
Subversion 서버 IP 변경되었을 때 TortoiseSVN와 Eclipse 설정 바꾸기 Relocate (12) | 2008.02.21 |
---|---|
addEvent로 addEventListener, attachEvent 브라우저 호환성 개선 (4) | 2008.02.19 |
Java에서 현재 함수명 구하기 (0) | 2007.12.03 |
VMWare에서 Windows Vista 설치 & 마이플랫폼 3.10L 테스트 (3) | 2007.11.29 |
CVS사용시 소스코드에 버전정보 자동으로 입력하기($Id:$) (0) | 2007.09.12 |
Comments