MySQL or mariadb forgot root password

Source: Internet
Author: User

Windows
===========
===========
net stop MySQL #先停止mysql
or stop in service management

Open the Command Prompt window in the Win7 flagship PC directly, then open the Command Line window (run as Administrator) and enter the following command:
c:\> mysqld--defaults-file= "C:\Program Files (x86) \mysql-5.6.24\mysql\my-default.ini"--console-- Skip-grant-tables

Also open a command line window and enter the command:
Mysql-u root-p #回车即可进入mysql命令行界面
mysql> show databases;
mysql> use MySQL;
mysql> Update user Set Password=password (' 123456 ') where user= ' root ';
mysql> flush Privileges;

Linux
==========
==========
Service mysqld Stop # stops MySQL
or Systemctl stop mysqld

Mysqld_safe--skip-grant-tables--skip-networking & #跳过权限检查 Restart

Mysql-uroot-p #回车即可进入mysql命令行界面
Mysql> Show Database;
mysql> use MySQL;
mysql> Update user Set Password=password (' 123456 ') where user= ' root ';
mysql> flush Privileges;

MySQL or mariadb forgot root password

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.