欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mysql

程序员文章站 2022-05-28 19:54:37
...

A:

重置root密码

 

(1)以 系统root权限登陆;

(2)停止MySQL服务器:MySQL.server stop;

 

(3)跳过授权表执行MySQL服务器:MySQLd_safe --skip-grant-tables --skip-networking &

(注:参数--skip-grant-tables为跳过授权表;--skip-networking为不监听TCP/IP连接);

 

(4)执行MySQL客户端:MySQL;

 

(5)使用MySQL数据库:use MySQL;

 

(6)更新root密码:update user set password=password('新密码') where user='root';

 

(7)关闭MySQL服务器,用正常方试起动。

相关标签: MySQL