发布网友 发布时间:2022-04-22 03:28
共1个回答
热心网友 时间:2022-04-07 16:25
1、干掉正在运行的数据库:
(方法1)/etc/init.d/mysqld
stop
(方法2)rcmysqld
stop
(方法3)service
mysqld
stop
(方法4)kill
-TERM
mysqld
2、启动mysql服务器(--skip-grant-tables忽略用户表)
mysqld_safe
--user=mysql
--skip-grant-tables
--skip-
networking
&
3、重新使用root用户登录数据库
mysql
-u
root
mysql
4、重新设置root密码
mysql>
UPDATE
user
SET
Password=PASSWORD('newpassword')
where
USER='root';
5、刷新权限
mysql>
FLUSH
PRIVILEGES;
6、退出mysql
mysql>
quit
7、重启mysql
(1)/etc/init.d/mysqld
restart
(2)service
mysqld
restart
8、使用root用户重新登录mysql
(方法1)mysql
-uroot
-p
(方法2)service
mysqld
start