Navicat multiple ways to modify MySQL database password

Navicat multiple ways to modify MySQL database password

Method 1: Use the SET PASSWORD command

First log in to MySQL.

Format: mysql> set password for username@localhost = password('new password');

Example:mysql> set password for root@localhost = password('123');

Method 2: Using mysqladmin

Format: mysqladmin -u username -p old password password new password

Example: mysqladmin -uroot -p123456 password 123

Method 3: Use UPDATE to edit the user table directly

First log in to MySQL.

mysql> use mysql; 
mysql> update user set password=password('123') where user='root' and host='localhost'; 
mysql> flush privileges;

Method 4: When you forget the root password, you can do this

Take Windows as an example:

1. Shut down the running MySQL service.
2. Open a DOS window and go to the mysql\bin directory.
3. Enter mysqld –skip-grant-tables and press Enter. –skip-grant-tables means skipping the permission table authentication when starting the MySQL service.
4. Open another DOS window (because the previous DOS window cannot be moved) and go to the mysql\bin directory.
5. Type mysql and press Enter. If successful, the MySQL prompt > will appear.
6. Connect to the privilege database: use mysql; .
6. Change the password: update user set password=password(“123”) where user=”root”; (don’t forget to add a semicolon at the end).
7. Refresh privileges (required step): flush privileges; .
8. Exit quit.
9. Log out of the system, log back in, and log in using the username root and the new password 123 you just set.

Summarize

The above are the various methods that I introduced to you about how to modify the MySQL database password using Navicat. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

You may also be interested in:
  • Navicat remote connection to MySQL implementation steps analysis
  • Tutorial on installing MySQL database and using Navicat for MySQL
  • Simple tutorial on using Navicat For MySQL
  • Navicat for MySql Visual Import CSV File
  • Import csv file into mysql using navicat
  • Detailed explanation of the idea of ​​installing mysql8.0.11 and changing the root password and connecting navicat for mysql
  • Navicat for MySQL 11 Registration Code\Activation Code Summary

<<:  React Native environment installation process

>>:  How to configure common software on Linux

Recommend

Window.name solves the problem of cross-domain data transmission

<br />Original text: http://research.microso...

Linux firewall iptables detailed introduction, configuration method and case

1.1 Introduction to iptables firewall Netfilter/I...

HTML tutorial, easy to learn HTML language (2)

*******************Introduction to HTML language (...

How to generate mysql primary key id (self-increment, unique and irregular)

Table of contents 1. Use the uuid function to gen...

MySQL full backup and quick recovery methods

A simple MySQL full backup script that backs up t...

Problems encountered in the execution order of AND and OR in SQL statements

question I encountered a problem when writing dat...

Essential Handbook for Web Design 216 Web Safe Colors

The color presentation on a web page will be affec...

5 common scenarios and examples of JavaScript destructuring assignment

Table of contents Preface 1. Extract data 2. Alia...

HTML small tag usage tips

Phrase elements such as <em></em> can ...

Detailed explanation of Vue px to rem configuration

Table of contents Method 1 1. Configuration and i...

js uses Canvas to merge multiple pictures into one implementation code

Solution function mergeImgs(list) { const imgDom ...

MySQL full-text search Chinese solution and example code

MySQL full text search Chinese solution Recently,...

Tutorial on installing Pycharm and Ipython on Ubuntu 16.04/18.04

Under Ubuntu 18.04 1. sudo apt install python ins...

How does MySQL achieve master-slave synchronization?

Master-slave synchronization, also called master-...