Total(378)
-
fail2ban 설치
특정 IP가 해당 서버에 무분별하게 접속하는 것을 방지하기 위해서 설치.해킹에 대한 차단을 미연에 방지할 수 있다./etc/fail2ban/jail.conf 에서 설정이 가능하다.(몇번 접속시 언제까지 막을 것인지..) $ rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm$ yum install fail2ban$ /etc/init.d/fail2ban stop | start | restart $ iptables -LChain INPUT (policy ACCEPT)target prot opt source destinationDROP tcp -- 1-164-0-0.dynamic.hinet.net/16 an..
2013.03.13 -
vacation 설치(/usr/bin/vacation)
$ cd /var/tmp$ wget http://sourceforge.net/projects/vacation/files/latest/download?source=files$ cd vacation-1.2.7.1$ make * make 시 아래와 같은 에러 발생시 gdbm 관련 패키지를 설치한다.gcc -g -Wall -Xlinker -warn-common -D_PATH_VACATION=\"/usr/bin/vacation\" -o vacation vacation.c strlcpy.c strlcat.c rfc822.c -lgdbmvacation.c:81:18: error: gdbm.h: No such file or directory * gdbm 설치 확인$ rpm -qa | grep gdbmgdbm-1.8.0..
2013.03.13 -
archive 와 log switch v$log
v$log 가 처리되는 순서(?)를 보고자 함.. 현재 대량 데이터를 삭제중에 있다. select a.group#, member, bytes/1024/1024, a.status, archivedfrom(select * from v$log) a,(select * From v$logfile) bwhere a.group#=b.group#order by group#, member; 위 쿼리를 지속적으로 모니터링을 해보았다. log switch가 발생하면 alert 파일에 기록이 남고 status는 active 상태로 변환. status가 inactive 로 변경되면, archive 파일로 떨구는 작업을 진행하게 된다.이후 archived 컬럼은 NO에서 YES로 변경되면서 다음 log switch가 발생할 때 ..
2013.01.18 -
rowid의 변화
현재 데이터의 rowid가 dml 작업시 변화가 있을까하여 몇가지 테스트를 해보았다. * TEMP 테이블 생성create table temp_rid_test tablespace users nologging asselect 1 no,'aaaaa' depth from dual union allselect 2,'bbbb' from dual union allselect 3,'xxxxx' from dual union allselect 4,'ddddd' from dual union allselect 5,'hhhha' from dual union allselect 6,'agghha' from dual; * 현재 rowidselect rowid, no, depth from temp_rid_test; ROWID NO D..
2013.01.17 -
hosts.deny 자동 등록 IP 해제
Linux Debian hosts.deny 에 나의 IP가 수시로 등록되어 접속이 될 수 없었다./var/lib/denyhosts 에 있는 일부 파일들을 열어 IP를 지어주면 된다.hosts hosts-restrictedhosts-roothosts-validuser-hosts http://denyhosts.sourceforge.net/faq.html#3_19
2012.10.31 -
scp 복사
scp 파일명 계정명@IP주소:경로 scp copy_test.log oracle@127.0.0.1:/oracle/oradata/Password:copy_test.log 100% 124MB 17.7MB/s 00:07
2012.10.18