Kaspersky Security Center를 위해 MySQL 서버를 사용하는 경우 InnoDB 및 MEMORY 스토리지와 UTF-8 및 UCS-2 인코딩 지원을 활성화하십시오.
my.ini 파일에 대한 권장 설정
my.ini 파일 구성하기:
[mysqld]
섹션에 다음 줄을 추가합니다.sort_buffer_size = 10M
join_buffer_size = 20M
tmp_table_size = 600M
max_heap_table_size = 600M
key_buffer_size = 200M
innodb_buffer_pool_size 값은 예상 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
값에 지정된 메모리는 서버 시작 시 할당됩니다. 데이터베이스 크기가 지정된 버퍼 크기보다 작다면, 필요한 메모리만 할당됩니다. 할당된 메모리의 실제 크기는 지정된 버퍼 크기보다 약 10% 큽니다. 자세한 내용은 MySQL 설명서를 참조하십시오.
파라미터 값으로 innodb_flush_log_at_trx_commit = 0
을 사용하기를 권장합니다. "1" 또는 "2" 값은 MySQL의 작동 속도에 부정적인 영향을 미치기 때문입니다.