Apache has such a feature, what about MySQL?
Does one exist?
You were so close! The kill -HUP method wasn't working for me either.
kill -HUP
You were calling:
select @@global.max_connections;
All you needed was to set instead of select:
set @@global.max_connections = 400;
See:
http://www.netadmintools.com/art573.html
http://www.electrictoolbox.com/update-max-connections-mysql/
2.1m questions
2.1m answers
60 comments
57.0k users