Detailed tutorial on setting password for MySQL free installation version

Detailed tutorial on setting password for MySQL free installation version

Method 1: Use the SET PASSWORD command

 MySQL -u root
  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

Method 2: Using mysqladmin

mysqladmin -u root password "newpass"

If the root password has been set, use the following method

mysqladmin -u root password oldpass "newpass"

Method 3: Use UPDATE to edit the user table directly

mysql -u root
  mysql> use mysql;
  mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';
  mysql> FLUSH PRIVILEGES;

When you lose your root password, you can

mysqld_safe --skip-grant-tables&
  mysql -u root mysql
  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root';
  mysql> FLUSH PRIVILEGES;

The above is a detailed tutorial on setting passwords for the MySQL free installation version introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time!

You may also be interested in:
  • Mysql 5.7.17 winx64 free installation version, installation and configuration graphic tutorial under win10 environment
  • MySQL 5.6 free installation version environment configuration graphic tutorial
  • MYSQL ZIP installation-free version configuration steps and graphical management tool mysql-workbench
  • Detailed explanation and sharing of the configuration steps of the MySQL free installation version
  • The actual configuration method of MySQL free installation version
  • Mysql default character set setting method (free installation version)

<<:  Methods for optimizing Oracle database with large memory pages in Linux

>>:  Canvas draws scratch card effect

Recommend

Detailed explanation of common for loop in JavaScript statements

There are many loop statements in JavaScript, inc...

MySQL integrity constraints definition and example tutorial

Table of contents Integrity constraints Definitio...

VMware15/16 Detailed steps to unlock VMware and install MacOS

VMware version: VMware-workstation-full-16 VMware...

In-depth explanation of the style feature in Vue3 single-file components

Table of contents style scoped style module State...

CSS style does not work (the most complete solution summary in history)

When we write pages, we sometimes find that the C...

A brief introduction to MySQL storage engine

1. MySql Architecture Before introducing the stor...

Detailed analysis of MySQL 8.0 memory consumption

Table of contents 1. innodb_buffer_pool_size 2. i...

Improvements to the web server to improve website performance

<br />In the first section of this series, w...

A brief talk about calculated properties and property listening in Vue

Table of contents 1. Computed properties Syntax: ...

Getting Started with MySQL - Concepts

1. What is it? MySQL is the most popular relation...

How to use Zen coding in Dreamweaver

After I published my last article “Zen Coding: A Q...

Docker solves the problem that the terminal cannot input Chinese

Preface: One day, I built a MySQL service in Dock...

How to delete node_modules and reinstall

Table of contents Step 1: Install node_modules in...

Use scripts to package and upload Docker images with one click

The author has been working on a micro-frontend p...

Shell script settings to prevent brute force ssh

The shell script sets access control, and the IP ...