初次接觸數據庫,二進制安裝了mysql5.7之後發現沒法像yum同樣在日誌中找回初始密碼~somysql
首先關掉啓動的數據庫:sql
在my.cnf中新增一句: skip-grant-tables 保存退出重啓mysql數據庫
直接用戶登陸mysql 便可跳過密碼ide
修改密碼:日誌
之前咱們修改是使用:
ip
update user set password=password('mysqlpwd') where user='root';string
可是在5.7版本不存在password字段,因此:it
update user set authentication_string=password('mysqlpwd') where user='root';io
flush privileges;table
最後退出便可