반응형
종종 사이트에 접속자가 폭주하여 connection 에러가 발생하는 경우가 생긴다.
이럴땐 아래와 같이 해결하자.
1) 현재 mysql에 설정된 max_connections 확인
# mysqladmin -u root -p variables | grep max_connections
Enter password:
| max_connections | 100
2) max_connections 를 1000으로 늘리기
# vi /etc/my.cnf
----------------------------------------------------
.
.
[mysqld]
max_connections = 1000
.
.
----------------------------------------------------
# /etc/init.d/mysqld restart
3) 적용된 max_connections 확인
# mysqladmin -u root -p variables | grep max_connections
Enter password:
| max_connections | 1000
'리눅스 > mysql' 카테고리의 다른 글
Another MySQL daemon already running with the same unix socket. (0) | 2014.11.23 |
---|---|
innodb 확인방법 (0) | 2014.11.23 |
DB 계정생성및 권한부여 패스워드 변경 (0) | 2014.11.23 |
mysql 디비 계정생성및 권한설정 (0) | 2014.11.23 |
mysql 서버 실행할 때 Starting MySQL.Manager of pid-file quit without updating 오류 (0) | 2014.11.23 |