나는 mysql 에서이 경고를 받는다.
[Warning] Aborted connection 21 to db: 'MyDB' user: 'MyUser' host: 'localhost' (Got an error reading communication packets)
나는 구글에서 몇 가지 주제를 겪어 왔으며 일부 제안에 따르면 여전히 동일한 행동 max_allowed_packet
에서 증가했다 128 to 512 to 1024
.
내가 드루팔 7을 사용하고, 그래 BLOB 데이터 유형 많이 있습니다,하지만 1024 Mb
의는 max_allowed_packet
내 의견으로는 충분합니다.
이 경고를 극복하는 방법이 있습니까?
편집하다:
@Rolando의 제안 / 답변으로 일부 설정을 추가했지만 여전히 동일한 경고가 표시됩니다.
내 MySQL 설정은 다음과 같습니다
[client]
port = 3306
socket = /tmp/mysql.sock
default-character-set = utf8
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-external-locking
key_buffer_size = 16K
max_allowed_packet = 1024M
table_open_cache = 128
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 192K
# Query cache disabled
thread_cache_size = 8
myisam-recover = BACKUP
max_connections = 100
thread_concurrency = 10
tmp_table_size = 128M
max_heap_table_size = 128M
log_error = /var/log/mysql/mysql-error.log
log_slow_queries = /var/log/mysql/mysql-slow.log
long_query_time = 2
log_warnings = 2
server-id = 1
binlog-format = row
replicate-same-server-id = 0
auto-increment-increment = 2
auto-increment-offset = 1
log_bin = mysql-bin
log-slave-updates
relay-log=mysqld-relay-bin
expire_logs_days = 10
max_binlog_size = 100M
innodb_data_home_dir = /var/db/mysql
innodb_data_file_path = ibdata1:10M:autoextend
innodb_log_group_home_dir = /var/db/mysql
innodb_buffer_pool_size = 8G
character-set-server = utf8
#innodb_additional_mem_pool_size = 2M
innodb_log_file_size = 2047M
innodb_log_buffer_size = 32M
innodb_flush_log_at_trx_commit = 2
innodb_thread_concurrency = 8
innodb_lock_wait_timeout = 50
innodb_flush_method = O_DIRECT
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
default-character-set = utf8
[mysql]
default-character-set = utf8
[myisamchk]
key_buffer_size = 32M
sort_buffer_size = 32M
[mysqlhotcopy]
interactive-timeout
[mysqld_save]
syslog
내 응용 프로그램은 InnoDB 만 사용하지만 표준 mysql 설치와 함께 제공되는 mysql과 같은 데이터베이스는 거의 없습니다 .MyISAM 엔진 유형을 사용하는 것뿐입니다. 그렇지만 걱정하지 않아도됩니다.
보시다시피 복제가 있음을 알 수 있듯이 경고는 복제 서버의 경고와 동일하며 구성은 이것과 동일합니다.