DB Table 복원 절차 데이타베이스 3개가 백업되어 있다고 가정.(test1, test2, test3) 복원할 테이블---------------------------------------------------1. H_B_notice2. GiftOrder_List--------------------------------------------------- * 해당 테이블이 어느 DB에 존재하는지 확인이 필요하다. ㅇmysql -u root -p - Password 입력 ㅇuse test1; -test1 DB로 접근 ㅇshow tables;+------------------------------------+| Tables_in_test1 |+------------------------------------..
Nginx 패키지 libc6libpcre3libsslzlib1glsb-base Munin 패키지 perlperl-moduleslibparse-recdescent-perllibrrds-perllibhtml-template-perllibdigest-md5-perllibtime-hires-perllibstorable-perlrrdtooladduserliblog-log4perl-perlttf-dejavumunin-commoncron Nginx 설치 후 기본 웹페이지 경로 /etc/nginx/sites-enabled해당 경로의 default 파일 내의 virthost 등록 server { listen 80; server_name test.co.kr; access_log /var/www/munin/access.lo..
VLOOKUP 을 이용하여 데이터 비교? 하기 =IF(ISERROR(VLOOKUP(B309,Sheet1!$A$2:$A$10000,1,0)),"X","O") =IF(ISERROR(VLOOKUP(원본,비교대상,1,0)),"같은게 없을 때","같은게 있을 때") -끝-
1. mod_evasive이란 무엇인가?이것은 HTTP Dos 또는 DDos 스택 또는 저돌적인 공격으로부터 아파치를 보호하는데 있다. 또한 ipchains, 방화벽, 라우터등으로 쉽게 구성될 수 있도록 디자인 되었다.탐지는 주소, URI의 IP 내부 동적 해쉬테이블을 생성함으로 수행되고, 각 아이피별로 거부된다.- 초당 몇번 이상의 같은 페이지를 요청하는 경우- 초당 같은 자식노드를 동시에 50번 이상 생성하는 경우- 일시적으로 블러킹되는 동안 어떠한 요청을 생성하는 경우 2. 설치방법 wget http://www.zdziarski.com/blog/wp-content/uploads/2010/02/mod_evasive_1.10.1.tar.gztar -xzvf mod_evasive_1.10.1.tar.gz..
vi /etc/profileHISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " export HISTTIMEFORMAT source /etc/profile 하거나 세션을 새로 열기. - 결과 1053 2013-12-12 14:03:01 1 1054 2013-12-12 14:03:02 2 1055 2013-12-12 14:03:03 3 1056 2013-12-12 14:03:03 4 1057 2013-12-12 14:03:04 5 1058 2013-12-12 14:03:06 history
원하는 경로에서 폴더 or 파일 권한 변경하기(하위 경로 포함) find /media/*/* -type f -exec chmod -v 644 {} \;(파일 권한 변경하기)find /media/*/* -type d -exec chmod -v 755 {} \;(폴더 권한 변경하기)- 실행 결과 [root@1019 test]# find ./ -type f -exec chmod -v 666 {} \;`./test'의 모드를 0666(rw-rw-rw-)으로 변경하였습니다`./.bashrc'의 모드를 0666(rw-rw-rw-)으로 변경하였습니다`./tt/tttt'의 모드를 0666(rw-rw-rw-)으로 변경하였습니다`./.bash_history'의 모드를 0666(rw-rw-rw-)으로 변경하였습니다`./.b..
1. 서버에 key 생성 하기ssh-keygen -t rsa 로그인되어 있는 계정의 홈디렉토리에 생성되니 참고. (경로는 변경 가능) Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa already exists.Overwrite (y/n)? yEnter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa.Your public key has been saved in /root/.ssh/id_rsa.pub.The key fingerprint is:4b:c2:2..