美文网首页
ubuntu安装MySQL时未提示输入密码

ubuntu安装MySQL时未提示输入密码

作者: wnyto | 来源:发表于2019-01-23 09:35 被阅读0次
    • 问题描述:

      在安装过程中并没有输入密码的选项,导致必须使用MySQL默认的用户名和用户密码,才能登录。
    • 解决方案

      1. 查看默认账户和密码,并使用其登录MySQL
      sudo vim /etc/mysql/debian.cnf
      
      1. 修改root账户
      UPDATE user SETplugin='mysql_native_password' WHERE User='root';
      
      FLUSH PRIVILEGES;
      
      update mysql.user set authentication_string=password('password') where user='root'and Host = 'localhost';
      

    参考:

    相关文章

      网友评论

          本文标题:ubuntu安装MySQL时未提示输入密码

          本文链接:https://www.haomeiwen.com/subject/sczdjqtx.html