Kaspersky Security Center 13 사용을 위한 MySQL x64 서버 구성

Kaspersky Security Center를 위해 MySQL 서버를 사용하는 경우 InnoDB 및 MEMORY 스토리지와 UTF-8 및 UCS-2 인코딩 지원을 활성화하십시오.

my.ini 파일에 대한 권장 설정

my.ini 파일 구성하기:

  1. 텍스트 편집기에서 my.ini 파일을 엽니다.
  2. my.ini 파일에 다음과 같은 행을 입력합니다.

    sort_buffer_size=10M

    join_buffer_size=20M

    tmp_table_size=200M

    max_heap_table_size=200M

    key_buffer_size=200M

    innodb_buffer_pool_size=the real 값은 예상 KAV 데이터베이스 크기의 80% 이상이어야 합니다

    innodb_thread_concurrency=20

    innodb_flush_log_at_trx_commit=0(서버는 대개 작은 트랜잭션을 사용)

    innodb_lock_wait_timeout=300

    max_allowed_packet=32M

    max_connections=151

    max_prepared_stmt_count=12800

    table_open_cache=60000

    table_open_cache_instances=4

    table_definition_cache=60000

    innodb_buffer_pool_size 값은 예상 KAV 데이터베이스 크기의 80% 이상이어야 합니다.

    파라미터 값으로 innodb_flush_log_at_trx_commit = 0을 사용하기를 권장합니다. "1" 또는 "2" 값은 MySQL의 작동 속도에 부정적인 영향을 미치기 때문입니다.

맨 위로