Mysql
 sql >> Database >  >> RDS >> Mysql

Errore 1130 in MySQL

Sul tuo server esegui mysql dalla riga di comando:

mysql -u root -p -h localhost -P 3306

Quindi esegui questo comando nella shell di MySQL:

>use mysql
>GRANT ALL ON *.* to [email protected]'%' IDENTIFIED BY 'yourpassword';
>FLUSH PRIVILEGES;

Divertiti.