備忘録

備忘録

MySQL max_connectionsとmax_user_connectionsを変更する

SET GLOBAL max_connections=100000;
SET GLOBAL max_user_connections=100000;

/* 結果確認 */
SHOW GLOBAL variables LIKE '%connection%';