Category Archives: System

윈도우XP와 비스타에서 사용할 수 없는 디렉토리명..

  svn을 사용하는데 디렉토리중 con 를 체크아웃 을 받을 수 없는 것이다.. Error Can’t create directory ‘~~\con’: 디렉코리 이름이 올바르지 않습니다.. 이게 먼일이다냐… 한참 고민하고 검색해본 결과… 윈도우XP와 비스타에서는 아래와 같은 디렉토리를 사용할 수 없다고 한다.. AUX, CON, NUL, COM1~COM9, … Continue reading

Posted in SCM/ITS, System | Tagged , , | Leave a comment

SCP를 암호없이 사용 하기 / ssh 로그인 없이 접속하기

  SCP를 암호없이 사용 하기 / ssh 로그인 없이 접속하기 1. 두대의 서버 트러스트 관계 만들기 1) scp를 사용하여 자동으로 데이터를 복사하기 위해서는 두대의 머신이 트러스트(Trusted) 관계에 있어야 된다. 두대의 서버를 트러스트 관계로 만들기 위해서는 공개/개인 dsa 키 쌍을 생성하여 … Continue reading

Posted in System, Util/Tools | Tagged , , , , , , , , | Leave a comment

Sendmail 에러 코드 표

  R.Code S.Code Explain Comment 553 5.1.3 Syntax illegal for recipient addresses Special case error msg. User Address required @speedup.amail.co.kr Hostname required Speedupamail.co.kr@ Colon illegal in host name part Speedup@amail:co.kr Invalid route address Speedup@amail@amail.co.kr Invalid route address Speedup@amail~co.kr 5.1.2 Invalid … Continue reading

Posted in System | Tagged , , | Leave a comment

NOQUEUE: [xxx.xxx.xxx.xxx] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA

  로그내용 : Jul 5 15:53:46 www sendmail[25566]: NOQUEUE: [xxx.xxx.xxx.xxx] did not issue MAIL/EXPN/VRFY/ETRN during connection to MTA 로그분석 : connection은 이루어 졌으나 아무런 data 전송이 발생하지 않을 경우 남는 메세지로, 접속후 패킷이 다운 되었다는 내용임. (가장 많이 보는 센드메일 … Continue reading

Posted in System | Tagged , | Leave a comment

로그분석 및 사이트 통계

  많은 관리자들이 로그분석및 사이트 통계를 위한 많은 분석툴이 있읍니다. 물론 그러한 툴을 이용한 방법으로 사이트및 시스템을 쳬계적이고 효율적으로 분석있습니다. 그런데 APACHE LOG 파일을 보면 access_log 파일과 error_log파일이 있읍니다. 이중에서 acess_log파일을 가지고 간단한 카운터를 하는 방법을 적고자 합니다. 물론 한곳에서 … Continue reading

Posted in System, WEB/WAS | Tagged , , , , , | Leave a comment

SSH 무작위 로그인 scan시도 차단 스크립트

  지겨운놈들.. 계속 공격 시도중… 경로 위치는 /usr/local/service/ ]# vi denyip.sh #!/bin/bash # Script by Yunkiman # Modified by icworld # Second Modified by dksniper(http://blog.naver.com/dksniper) # Convert oops-firewall to hosts.deny days=`date +%d` nowdir=`pwd` savedir=”$nowdir/denylist” cleanfile=”$nowdir/hosts.dat” cnt=0 if [ -e /var/log/secure … Continue reading

Posted in Security/Hacking, System | Tagged , | Leave a comment

간단한 네트웍 트래픽 측정 스크립트

  간단한 네트웍 트래픽 측정 스크립트 #!/bin/sh # # Scripted by JoungKyun Kim # 2001.2.15 http://www.oops.org # This Script follows GPL2 License if [ “$1” != “” ]; then # ethnet device ETH=”$1:” CHECK=/proc/net/dev CAT=/bin/cat GREP=”/bin/grep ${ETH}” SED=”sed -e s/${ETH}//” … Continue reading

Posted in Network, System | Tagged , , , | Leave a comment

docbook 깔다가 zip파일 옆구리 터지는 소리

  docbook을 설치 하려고 다운을 받았는데 zip파일이였다. 당연히 unzip이 있을 줄 알고 ]$ unzip xxx.zip 했더니 OTL 없었다..ㅡㅡ;; ]$ rpm -qa | grep unzip 요즘 배포판은 unzip도 안깔려있는게냐? 암튼 귀찮아서 yum으로 설치 하려고 했다. ]# yum install unzip Traceback (most … Continue reading

Posted in Python/Ruby/Perl, System, Util/Tools | Tagged , , , | Leave a comment