1. 程式人生 > >centos 7 + mysql 5.7.13 重置數據庫的root密碼

centos 7 + mysql 5.7.13 重置數據庫的root密碼

linux centos7 系統

centos 7 + mysql 5.7.13重置root密碼步驟:

# vi /etc/my.cnf # [mysqld]下skip-grant-tables 內容前添加#


# mysql -uroot -p 連續輸入enter 進入


# use mysql


# update mysql.user set authentication_string=PASSWORD(‘redhat‘) where User=‘root‘;

# grant all privileges on *.* to [email protected]%‘ identified by ‘redhat‘; (授權,不然navicat等無法登錄數據庫)。


# vi /etc/my.cnf # [mysqld]下skip-grant-tables 內容前去掉#


#systemctl status mysql.service 重啟mysql數據庫服務。

再登錄數據庫即可。


本文出自 “敬管叔鮮” 博客,謝絕轉載!

centos 7 + mysql 5.7.13 重置數據庫的root密碼