+ admin 2011.03.22 linux ANSI Color Codes ANSI 컬러 값을 사용 할 일이 생겨서 컬러 값을 찍어봤다.출력된 컬러는 터미널에 설정된 파레트 값에 영향을 받아서 출력된 결과임 [0m : 모든 색과 스타일 초기화[1m : 굵게(bold) / 밝게[3m : 이탤릭체(italic)[4m : 밑줄(underline)[7m : 반전(글자색/배경색을 거꾸로)[9m : 가로줄 치기[22m : 굵게(bold) 제거[23m : 이탤릭체(italic)제거[24m : 밑줄(underline)제거[27m : 반전 제거[29m : 가로줄 제거[30m : 글자색:검정[31m : 글자색:빨강[32m : 글자색:초록[33m : 글자색:노랑[34m : 글자색:파랑[35m : 글자색:마젠트(분홍)[36m : 글자색:시안(청록)[37m : 글자색:백색[39m : 글자색으로... Read More..
admin 2011.02.16 /usr/lib/libltdl.so: could not read symbols: File in wrong format php 컴파일시 (64bit)아래와 같은 에러가 발생시/usr/lib/libltdl.so: could not read symbols: File in wrong format심벌릭 링크에 문제가 있는것으로 확인[root@localhost php-4.3.10]# make clean 심벌릭 링크 재성성 [root@localhost php-4.3.10]# ln -sf /usr/lib64/libltdl.so /usr/lib/libltdl.so 다시 컴파일 진행하면 된다 Read More..
admin 2010.12.30 mod_rewrite 를 이용한 www 접속 웹주소창에 xinet.kr 입력시 주소창 주소가 www.xinet.kr 표시시 아래와 같이 mod_rewrite 를 설정<VirtualHost 10.10.10.1:80> DocumentRoot /home/xinet/html ServerName xinet.kr RedirectMatch /(.*)$ http://www.xinet.kr/$1 CustomLog logs/access_log vcommon</VirtualHost> <VirtualHost 10.10.10.1:80> DocumentRoot /home/xinet/html ServerName www.xinet.kr CustomLog logs/access_log vcommon</VirtualHost>주소창이 아닌 소스상에서... Read More..
admin 2010.11.19 BOT 아이피리스트 (검색 bot 아이피) http://iplists.com/http://iplists.com/google.txthttp://iplists.com/inktomi.txthttp://iplists.com/lycos.txthttp://iplists.com/infoseek.txthttp://iplists.com/altavista.txthttp://iplists.com/excite.txthttp://iplists.com/misc.txthttp://iplists.com/non_engines.txt Read More..
admin 2010.11.19 검색 로봇 막기 (검색 bot 막기) robots.txt 사용하려면 홈페이지 최고 상단 / 에 올려놓으시면됩니다. 참고로 robots.txt 있다고 해서 모든 로봇을 막을수는 없습니다. 그냥 뚤고 지나가는 로봇도 있습니다. * 아래와 같이 설정하시면 모든 검색엔진에 대해서 막는다는 뜻입니다. robots.txt ———————- User-agent: * Disallow: / ———————- 모든 검색엔진 허용하기 ——————— User-agent: * Disallow: ——————- 특정 검색엔진 막기 아래와 같이 특정 검색 로봇 이름명을 적어주시면됩니다. //네이버 로봇 막기 ——————— User-agent: cowbot Disallow: / ——————- //구글 로봇 막기 ——————– User-agent: Googlebot Disa... Read More..
admin 2010.11.16 [alert] (EAI 2)Name or service not known: mod_unique_id: unable to find IPv4 address of [Tue Nov 16 15:23:08 2010] [alert] (EAI 2)Name or service not known: mod_unique_id: unable to find IPv4 address of “ns1.xinet.kr”[Tue Nov 16 15:25:15 2010] [alert] (EAI 2)Name or service not known: mod_unique_id: unable to find IPv4 address of “ns1.xinet.kr”Configuration Failed이런 에러가 발생되는 경우가 있다이럴때는 호스트네임을 찾을수가 없어서 발생되는 부분이되네임서버를 확인하고 네임서버에도 이상이 없을경우 hostname 을 지정해 준다또는 vi /etc/hosts 파일에 해당 서버의 네임... Read More..
admin 2010.11.05 bash에서 배열 사용 #! /bin/bashFILE=”[aeiou]”declare -a ARRAYCOUNT=$( grep “$FILE” /var/log/httpd/access_log |wc -l )ARRAY=( “$COUNT” )echo “count of array elements: ${#ARRAY[@]}”echo ” list of array elements: ${ARRAY[@]}”ls /var/log/httpd/access_log.[0-9].gz |{while read LOG ; doCOUNT=$( gzcat “$LOG” |grep “$FILE” |wc -l )ARRAY=( ${ARRAY[@]} “$COUNT” )echo “count of array elements: ${#ARRAY[@]}”echo ” list of array... Read More..
admin 2010.10.01 서비스 제한측면의 아파치 활용 예제 아파치 웹서버의 활용에 있어, 보다나은 보안 설정 방법 몇 가지를 소개한다.특정 Agent가 자꾸 사이트에 들어와서 긁어간다든지,이미지 파일을 외부에서 링크하지 못하도록 한다든지,특정 IP에서는 인증없이, 그 이외 IP에서는 아파치 인증을 통해서만 페이지를 보게하는등의 응용적인 측면에서 방법들이다.이 방법들은 제가 사용하고 있는 몇가지 방법을 정리하는 의미에서 적은 것이다.1. 특정 브라우저의 접속을 차단 SetEnvIfNoCase User-Agent “^Microsoft URL Control” dont_want<Directory /usr/local/apache/htdocs> <Limit GET POST>Order Allow,DenyAllow from allDeny from env=dont_want... Read More..
admin 2010.09.29 mysql unauthenticated user login mysql> show processlist;+—-+———————-+———————-+——-+———+——+——————+——————+| Id | User | Host | db | Command | Time | State | Info |+—-+———————-+———————-+——-+———+——+——————+——————+| 4 | unauthenticated user | 218.145.71.224:50060 | NULL | Connect | NULL | Reading from net | NULL | | 5 | unauthenticated user | 218.145.71.224:50061 ... Read More..