码迷,mamicode.com
首页 > 数据库 > 详细

Ubuntu18.04 修改Mysql5.7默认root密码

时间:2019-03-07 15:41:37      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:word   mysql   mysqld   ble   tps   5.7   cal   ack   exit   

步骤

  • 设置mysql免密码登陆
    编辑/etc/mysql/my.cnf文件,在最后加入以下设置
[mysqld]
skip-grant-tables=1
  • 重启mysql
$ sudo service mysql stop
$ sudo service mysql strat
  • 进入mysql,先修改验证方式,再改密码
$ mysql
//修改验证方式
mysql> USE mysql;
mysql> UPDATE user SET plugin='mysql_native_password' WHERE User='root';
//修改密码
mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';
//刷新权限
mysql> flush privileges;
//推出
musql> exit;
  • 重启mysql服务 登陆mysql
$ mysql -uroot -p

参考

https://stackoverflow.com/questions/39281594/error-1698-28000-access-denied-for-user-rootlocalhost#

Ubuntu18.04 修改Mysql5.7默认root密码

标签:word   mysql   mysqld   ble   tps   5.7   cal   ack   exit   

原文地址:https://www.cnblogs.com/ahmczsy/p/10489809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!