windows
修改配置文件
1、打开mysql配置文件my.ini, 找到 [mysqld],在下面添加: skip-grant-tables 2、重启mysql服务
修改mysql密码
3、在终端使用root账号登陆,不需要输入密码直接回车 4、使用命令 mysql>update mysql.user set authentication_string=password(‘new_password’) where user=‘root’ and Host =‘localhost’ mysql>FLUSH PRIVILEGES; 5、注释第一步添加的内容
6、重启mysql服务,登陆
centos
修改配置文件
1、修改配置文件 vim /etc/my.cnf 在 [mysqld] 的段中加上一句:skip-grant-tables
修改mysql密码
2、重启 mysql 服务,systemctl restart mysqld 3、在输入 mysql -u root -p 输入回车即可进入 mysql 数据库 低版本修改:update user set Password = password(‘LDtianzhe.’) where user = ‘root’;
高版本修改:update user set authentication_string=password(‘new password’) where user = ‘root’;
注释第一步中添加的内容vim /etc/my.cnf,重启mysql服务
|