时间:2021-07-01 10:21:17 帮助过:24人阅读
(一)killall mysqld 停止mysql
(二)mysqld_safe --skip-grant-tables
(三)另起一个sell
(四)/etc/init.d/mysqld start 启动mysql服务
(五)mysql 连接mysql
(六)这样就可以看到mysql库和新建的那些库
(七)use mysql
(八)update user set password=PASSWORD(‘mysqladmin‘) where user=‘root‘;
执行以上几条语句基本上就可以了
最后还得刷新:flush privileges
授权语句:GRANT ALL PRIVILEGES ON . TO ‘root‘ @‘localhost‘ IDENTIFIED BY ‘newpassword‘ WITH GRANT OPTION;
添加root用户:insert into user (host,user,password)values (‘localhost‘,‘root‘,password(‘newpassword‘));
授权:grant all privileges on . to root @"localhost";
【资料搬迁】mysql问题
标签:value 怎么 sql word kill 不能 添加 停止 操作