엄지월드

MySQL Error "Too many connections" 본문

Server&DevOps/Database

MySQL Error "Too many connections"

킨글 2022. 7. 21. 22:44
반응형

1만건의 데이터를 저장하려고 하니, 계속해서 Too many Connections가 발생했다. 

그래서 알아본 결과, max connections를 늘려주면 되었다.

set global max_connections=512;

show variables like 'max_connections';

Comments