_mysql_exceptions.OperationalError: (2006, 'MySQL server has gone away')
에러가 나서 찾아보니,,
서버에서 전달하는 패킷이 작아서 에러가 나는 것같아서 확인해보았다.
MariaDB [(none)]> show variables where variable_name = 'max_allowed_packet';
+--------------------+----------+
| Variable_name | Value |
+--------------------+----------+
| max_allowed_packet | 4194304 |
+--------------------+----------+
4M 정도 되길래 용량을 더 키워주었다.
처리방법
mysql 실행할 때, --max_allowed_packet=16M 을 넣어줘서 바꿔줌
해보니 오류 안남!!
'IT' 카테고리의 다른 글
Git 버전관리 (0) | 2018.06.01 |
---|---|
he size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size (0) | 2018.04.20 |
[2018_03_27] 찾아본 것 (0) | 2018.03.27 |
json (0) | 2018.03.21 |
awk 명령어 (0) | 2018.03.08 |