Answers for "how to modify alter user root@localhost identified with mysql_native_password by properly"

SQL
0

how to modify alter user root@localhost identified with mysql_native_password by properly

GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.1.2.%'
IDENTIFIED BY PASSWORD '*fdfgdgdggfggfgfg' WITH GRANT OPTION;
Posted by: Guest on January-06-2022
0

how to modify alter user root@localhost identified with mysql_native_password by properly

DELETE FROM mysql.user WHERE user='root' AND host='localhost';
FLUSH PRIVILEGES;
Posted by: Guest on January-06-2022
0

how to modify alter user root@localhost identified with mysql_native_password by properly

UPDATE mysql.user SET host='%'
WHERE user='root' AND host='localhost';
FLUSH PRIVILEGES;
Posted by: Guest on January-06-2022

Code answers related to "how to modify alter user root@localhost identified with mysql_native_password by properly"

Code answers related to "SQL"

Browse Popular Code Answers by Language