Notice
- Today
- Total
Recent Posts
Recent Comments
Link
Tags
- .mine
- 자동 닫힘
- RaspberryPi
- <<<<<<<<
- ImageList Icon 변환
- mariaDB 설치
- Ribbon
- c#
- 라즈베리파이
- WebViewClient
- 다중 Filter
- ubuntu
- 라즈베리 피이
- onPageFinished
- node.js
- OSHP
- ContextMenuStrip
- MariaDB
- usb 인식 불가
- OpenFileDialog
- Image icon 변환
- node.js 설치
- Spread
- UltraToolbarsManager
- 동영상 오류
- ScrollBarTrackPolicy
- Raspberry Pi
- mariaDB 외부접속
- startActivity
- mp4 재생
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