View Single Post
r3D w0LF
Senior Member
Join Date: Dec 2013
Location: Albania
Old 12-24-2017 , 14:12   Re: 'max_connections_per_hour'
Reply With Quote #10

Quote:
Originally Posted by tarsisd2 View Post
Increase the max_user_connection value.

PHP Code:
show global variables like '%connections%'
Will help you in giving the no of connections you have set. Increase the number of connections. Max connections can be more than 16000 I guess, it all depends on your CPU, no of threads It can handle etc.

PHP Code:
SET GLOBAL max_user_connection=1000
max_user_connections is a dynamic variable, which means you can directly run this query. You do not have to shutdown mysql.
It is already set to 0, the issue is with "max_connections_per_hour". However i am running it on a VPS for now.
r3D w0LF is offline