yesterday my mysql worked fine
and now I start it and I want to enter my bd
I get this error host localhost is not allowed to connect to this mysql server
and in error details
Error Code: 1130
This error occurs because you don't have a permission to connect to MySQL server from your host. Please contact your database administrator or, if you have access to MySQL server with grant privilege, you can use the GRANT statement to add a new user. For example, the following command will give full access from your host to the user:
/*!50003 CREATE USER 'user'@'user_host'*/;
GRANT ALL PRIVILEGES ON *.* TO 'user'@'user_host' IDENTIFIED BY 'user_password';