can not connect database server in mysql? -
i changed max_connection value 1 / hour in mysql server.than close mysql workbench , again try open.it shows above error can can 1 tell how fix this.
thanks in advance
my problem solved using following way
actually did wrong set max_connection_per_hour=1 in workbench settings.
that's why can't open connection period of time .now solved using terminal use of following command
$ mysql -u root -p
then enter password root user use following command
mysql>$ grant usage on . 'root'@'localhost' max_connections_per_hour 0;
after can open connection out problem.
i tried command many times after 1 hour works me before gives me error
Comments
Post a Comment