一、修改配置文件免密登录
vi /etc/my.conf
skip-grant-tables
二、登录数据库
mysql -u root -p
#输入密码时直接回车
use mysql;
update user set authentication_string = password("123456") where user = "root";
一、修改配置文件免密登录
vi /etc/my.conf
skip-grant-tables
二、登录数据库
mysql -u root -p
#输入密码时直接回车
use mysql;
update user set authentication_string = password("123456") where user = "root";