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

  • 问题描述:

    在安装过程中并没有输入密码的选项,导致必须使用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';
    

参考:

  • https://blog.csdn.net/sinat_21302587/article/details/76870457
  • https://stackoverflow.com/questions/39281594/error-1698-28000-access-denied-for-user-rootlocalhost

你可能感兴趣的:(ubuntu安装MySQL时未提示输入密码)