:::::::::: Mysql 데이타베이스에서 max_connection 늘려주기 ::::::::::::::
Mysql 을 설치 하면 기본 디폴트로 max_connection = 100 이다
약간 디비접속이 많은 사이트라면 디비접속에러 라는 관련 에러를 볼 것이다...
이때 mysql variables 중 max_connection 을 늘려 주자
// max_connection 설정 확인
# mysqladmin -u root -p variables | grep max_connection
password:
max_connections | 100
// mysql 데몬을 죽인다.
# mysqladmin -u root -p shutdown
or
# killall mysqld
// mysqld 데몬을 띄우면서 max_connection 을 명시 한다.
# safe_mysqld -O max_connections=300 &
(*** 참고로 리눅스계열에서 max_connections 는 1000까지 가능, 크게 할때는 메모리를 늘려준다)
// 확인
# mysqladmin -u root -p variables | grep max_connectjons
password :
max_connections | 300
// mysql 설정파일 (my.cnf) 에 추가
[mysqld]
----------------------------------
set-variable = max_connections=300
-----------------------------------
이렇게 추가 한 후 mysqld 데몬 재시작