Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- 라즈베리파이
- <<<<<<<<
- MariaDB
- 다중 Filter
- startActivity
- 동영상 오류
- node.js
- ScrollBarTrackPolicy
- UltraToolbarsManager
- .mine
- mariaDB 외부접속
- OpenFileDialog
- Raspberry Pi
- ubuntu
- mp4 재생
- 자동 닫힘
- 라즈베리 피이
- Image icon 변환
- RaspberryPi
- ImageList Icon 변환
- ContextMenuStrip
- onPageFinished
- node.js 설치
- c#
- mariaDB 설치
- OSHP
- Ribbon
- WebViewClient
- Spread
- usb 인식 불가
Archives
Realman's World
mariaDB 사용시 'Lost connection ...' exception 본문
scheduler를 이용해서 값을 입력할 때 아래와 같은 exception이 발생하였다.
[Error: Lost connection to MySQL server at 'reading authorization packet', system error: 0] code: 2013
로직상의 문제는 아닌 듯 하고 mariadb 설정의 문제인 것 같아 구글링하던 중
/etc/hosts.allow, /etc/hosts.deny 에 mysqld: ALL 추가
mysqld: ALL
/etc/mysql/my.cnf에 connection_timeout 증가
connect_timeout = 10
하면 된다고 해서 변경했더니 오류가 발생하지 않았다.
- 추가
. MariaDB Status 도 변경
. show status like '%connect%' 를 통해 Aborted_connets 값이 지속적으로 발생하면 my.cnf 파일의 timeout 값과 cache size를 2배로 증가시킴
http://www.albumbang.com/board/board_view.jsp?board_name=free&no=139
Comments