“Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente” Código de respuesta

Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente

DELETE FROM mysql.user WHERE user='root' AND host='localhost';
FLUSH PRIVILEGES;
Creepy Centipede

Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente

GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.1.2.%'
IDENTIFIED BY PASSWORD '*fdfgdgdggfggfgfg' WITH GRANT OPTION;
Creepy Centipede

Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente

UPDATE mysql.user SET host='%'
WHERE user='root' AND host='localhost';
FLUSH PRIVILEGES;
Creepy Centipede

Respuestas similares a “Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente”

Preguntas similares a “Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente”

Más respuestas relacionadas con “Cómo modificar alterar usuario root@localhost identificado con mysql_native_password por correctamente” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código