use mysql;
select host,user,authentication_string from mysql.user;
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'master$1234_01KJ';
FLUSH PRIVILEGES;
use mysql;
select host,user,authentication_string from mysql.user;
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'master$1234_01KJ';
FLUSH PRIVILEGES;