본문 바로가기

서버구축208

Sun ONE Directory Server 설치 시작하기 전에, Sun ONE Directory Server 제품 문서에 설명된 대로 기본 서버 설치 및 구성을 완료했는지 확인하십시오. 자세한 정보는 다음 웹 주소에 있는 Sun 문서를 참조하십시오. http://docs.sun.com/db/prod/s1dirsrv Tivoli Access Manager에 대해 Sun ONE Directory Server를 구성하려면 다음 단계를 따르십시오. 주: 비ASCII 문자를 속성에 저장하기 위해서는 Directory Server 구성 중 7비트 점검 플러그인을 사용 불가능하게 해야 합니다. 이 플러그인의 기본값은 on으로 설정됩니다. Directory Server 디먼 slapd-serverID가 실행 중인지 점검하십시오(ps 명령 또는 운영 체제에 해당하는 .. 2010. 8. 6.
Varnish VCL language 가이드 I’ve been working with Varnish 2.0 for the last two weeks, going from complete n00b to someone who knows enough to feel I can improve the terrible lack of documentation for Varnish and VCL. There’s not a lot out there and what’s there is hard to find and sometimes erroneous. I’m hoping this post will help others like me who are struggling with Varnish and VCL. Basics VCL is essentially a set of .. 2010. 6. 1.
[MySQL] OPTIMIZE, TRUNCATE, 테이블복구, DB공간제한 OPTIMIZE TABLE 문법 : 대량의 데이터를 삭제했던가, 테이블의 잦은 변화가 있을 경우 사용하면 유용 사용법) mysql>optimize table 테이블명; TRUNCATE 문법 : 레코드 삭제 사용법) mysql>truncate table 테이블명; * delete from 테이블 조건; => 데이터를 순자적으로 삭제 truncate table 테이블명; => 테이블 자체를 삭제후 테이블을 새로 생성 테이블 삭제 속도는 빠르나 삭제된 레코드를 복구할수없다. *테이블이 깨져서 나오는 경우 테이블을 체크해서 복구하여야한다. 체크 : mysql>check table 테이블명; 복구 : mysql>repair table 테이블명; ex) jung 사용자의 DB사용량을 계정용량 범위내에서 자유로이 사.. 2010. 5. 24.
웹방화벽 ModSecurity 룰적용 순서 실제 룰셋은 사용자가 서버에 어떤 요청을 했을시 서버가 해당 요청을 받는 순간부터 시작하여 요청을 처리후 사용자에게 보내기 직전까지의 단계에서 설정이 가능합니다. modsecurity 구성 룰셋에서는 phase 1, phase 2, phase 3, phase 4, phase 5로 나누고 있습니다. - phase 1 : request headers(Apache로 부터 유용한 정보사용, 필요한 경우 부가적인 파싱수행) - 필요한 경우 request body를 저장하고 구문분석을 실행한다. - phase 2 : request body - 처리된 요청은 통과 - phase 3 : response headers(headers를 보내기전) - 필요한 경우 response body를 저장 - phase 4 : res.. 2010. 5. 12.
MySQL errno 의미 확인 perror, Explaining Error Codes For most system errors, MySQL displays, in addition to an internal text message, the system error code in one of the following styles: message ... (errno: #) message ... (Errcode: #) You can find out what the error code means by either examining the documentation for your system or by using the perror utility. perror prints a description for a system error code or .. 2010. 5. 11.