ubuntu安装MySQL时未提示输入密码
2019-01-23 本文已影响0人
wnyto
-
问题描述:
在安装过程中并没有输入密码的选项,导致必须使用MySQL默认的用户名和用户密码,才能登录。 -
解决方案
- 查看默认账户和密码,并使用其登录MySQL
sudo vim /etc/mysql/debian.cnf
- 修改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';
参考: