본문 바로가기

Server

(57)
아파치 서비스 등록 아파치 서비스 등록 (Apache/2.2.x 기준) 이전 버전도 비슷하다. httpd.exe -k install -n "Apache2.2" -k install // 서비스로 등록 -n "Apache2.2" // 서비스 이름 서비스 삭제는 "-k uninstall"
Ping으로 서버 OS종류 알기 ping 192.168.0.1 Reply from 192.168.0.1: bytes=32 time=60ms TTL=128 Reply from 192.168.0.1: bytes=32 time=60ms TTL=128 Reply from 192.168.0.1: bytes=32 time=60ms TTL=128 위 자료에서 무엇이 키포인트일까요? 맞습니다. 바로 TTL(Time to Live)값을 보고 알수 있습니다. 유닉스/리눅스의 경우 255, 윈도우 계열은 128부터 TTL 값이 라우터를 지날 때 마다 1씩 감소 하기 때문에 일반적으로 TTL값이 200번대는 유닉스/리눅스 이며 100번대는 윈도우 계열 컴퓨터 일 것입다. 위 192.168.0.1은 윈도우 계열인것 같습니다. ^^ [일반적인 TTL 값] 31..
이미지, 동영상 불펌 막기 URL : http://www.thesitewizard.com/archive/bandwidththeft.shtml Preventing Image Bandwidth Theft With .htaccess by Christopher Heng, thesitewizard.com Judging from thesitewizard.com's web statistics, my article "How to Protect Your Images from Bandwidth Theft (PHP Script)" appears to be exceedingly popular. And no wonder too: I read complaints about websites stealing another site's images and ma..
/etc/mail/virtusertable 수정 후 DB화 적용 [mail]# cd /etc/mail [mail]# makemap hash access < access [mail]# makemap hash virtusertable < virtusertable [mail]# /etc/rc.d/init.d/sendmail restart
SVN + Apache + OpenSSL + Multi Project (1부) Subversion과 Apache+OpenSSL연동 [준비물] apache_2.0.61-win32-x86-no_ssl.msi http://httpd.apache.org/download.cgi apache-2.0.61_openssl-0.9.8g.zip http://smithii.com/node/30 Win32OpenSSL-0_9_8g.exe http://www.slproweb.com/products/Win32OpenSSL.html svn-1.4.6-setup.exe http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 SVNService.exe 컴파일한 SVNService 금일 설치 날자를 기준으로 apache_2.0.63-win32-..
NetBIOS Name Resolution * NetBIOS Name Resolution NetBIOS Name 이란 알다시피 로컬 지역내에서 사용자 컴퓨터의 이름을 친근하게 표시한 이름입니다. 그러므로 당연히 로컬 지역내에서 유니크한 이름을 가져야 하겠죠.. 그런데 이러한 NetBIOS Name 을 실제로 통신을 할 수 있도록 IP address나 MAC address 로 어떻게 번역이 되며 또한 윈도우의 네트워크 환경을 클릭하게 되면 어떠한 경로를 거쳐 이웃들의 컴퓨터 이름이 브라우징 될 수 있을까요.. (1) WINS server 를 사용하지 않는 경우 (가) 브라우저의 종류와 기능 - 브라우저에는 3가지 종류가 있습니다. 마스터 브라우저 : 마스터 브라우저 알림 패킷을 주기적으로 사용자들에게 브로드캐스트 백업 브라우저 : 브라우징 리스트를..
vi에서 utf-8 과 euc-kr 동시 사용하기 VI환경 파일에서 아래를 추가 시켜 주면 쉽게 해결 됩니다. set fencs=ucs-bom,utf-8,euc-kr.latin1 set enc=euc-kr example) CentOS release 4.6 (Final) 에서 vi수정하기 vi /etc/vimrc if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=utf-8,latin1 endif set fencs=ucs-bom,utf-8,euc-kr.latin1 set enc=euc-kr set nocompatible " Use Vim defaults (much better!) set bs=2 " allow backspacing over everything in insert mode
svnadmin help create C:\>svnadmin help create create: 사용법: svnadmin create REPOS_PATH REPOS_PATH 에 새로운 빈 저장소를 생성합니다. 옵션: --bdb-txn-nosync : 트랜잭션을 커밋에서 fsync를 비활성화합니다[Berk DB] --bdb-log-keep : 자동 로그 파일 삭제를 비활성화 합니다 [Berkeley DB] --config-dir arg : arg로 지정된 디렉토리에서 사용자 구성화일을 읽습다. --fs-type arg : 저장소 타입: 'fsfs' (기본값) 또는 'bdb' --pre-1.4-compatible : Subversion 1.4 버전 이전과 호환되는 포맷 이용