MySql 5.7 重置root密码
Posted kelsen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySql 5.7 重置root密码相关的知识,希望对你有一定的参考价值。
一、以安全模式登录
# Stop mysql
sudo service mysql stop
# Make MySQL service directory.
sudo mkdir -p /var/run/mysqld
# Give MySQL user permission to write to the service directory.
sudo chown mysql:mysql /var/run/mysqld
# Start MySQL manually, without permission checks or networking.
sudo mysqld_safe --skip-grant-tables &
# Log in without a password.
mysql -u root
二、修改密码
UPDATE mysql.user SET authentication_string=PASSWORD('NEW-PASSWORD'), plugin='mysql_native_password' WHERE User='root' ;
EXIT;
三、重启数据库
# Turn off MySQL.
sudo mysqladmin -S /var/run/mysqld/mysqld.sock shutdown
# Start the MySQL service normally.
sudo service mysql start
以上是关于MySql 5.7 重置root密码的主要内容,如果未能解决你的问题,请参考以下文章