'Programming/MySql'에 해당되는 글 1건

  1. 2014.06.12 (Connection) 최대 연결 수 및 타임아웃 조정
Programming/MySql2014. 6. 12. 12:19

mysql> set global max_connections=300;

mysql> set global wait_timeout=10;
(mysql 을 재시작 안해도 max_connections 값이 바로 적용된다.)


확인

show global variables like '%connection%';

show global variables like '%time%';


global을 안 했을 경우 이상한게 뜬다고 함

Posted by WI_K