How to modify the initial password of a user in mysql5.7

How to modify the initial password of a user in mysql5.7

When users install MySQL database for the first time, they always want to change the initial root password. I do the same and always search on Baidu. Here are some commonly used SQL for operating database and some basic concepts.

Modify the user's initial password:

SET PASSWORD = PASSWORD('your new password');
ALTER USER 'root'@'localhost' PASSWORD EXPIRE NEVER;
flush privileges;

Create a new user:

CREATE USER 'username'@'host' IDENTIFIED BY 'password';

Grant permissions to the user:

GRANT all privileges ON databasename.tablename TO 'username'@'host';
flush privileges;

To set and change your password:

SET PASSWORD FOR 'username'@'host' = PASSWORD('password');

Revoke permissions:

REVOKE privilege ON databasename.tablename FROM 'username'@'host';

To delete a user:

DROP USER 'username'@'host';

View the user's authorization:

SHOW grants for 'username'@'host';

The Innodb engine provides support for ACID transactions:

  • A (Atomicity) means that a transaction is either fully executed or not executed;
  • C (Consistency) means that the execution of a transaction does not change the consistency of the data in the database;
  • I (Independence; Isolation) is also called isolation, which refers to the state in which two or more transactions are not executed alternately;
  • D (Durability) means that after a transaction is successfully executed, the changes made will be persisted in the database and will not be rolled back for no reason;

MYSQL isolation level:

這里寫圖片描述 

Dirty read: allows reading of uncommitted dirty data.

Non-repeatable read: Some records are read at point T1. When these records are read again at point T2, these records may have been changed or disappeared.
Phantom read: It solves the problem of non-repeatable reads and ensures that the query results in the same transaction are the same as when the transaction started.

MYSQL locking mechanism:

The locking mechanism is a rule set by the database to ensure the consistency of the database and make various shared resources orderly when being accessed concurrently.

  • Row-level locking
  • The granularity of the locked object is very small, which can easily cause deadlock, but the probability of locking resource contention is also minimal.
  • Page-level locking
  • Between row-level locking and table-level locking.
  • Table-level locking

The most granular locking mechanism. Deadlock is not likely to occur, but the probability of resource competition is higher.

Table-level locking is mainly used in some non-transactional storage engines such as MyISAM, Memory, and CSV. Row-level locking is mainly used in Innodb and NDBCluster storage engines. Page-level locking is mainly used in BerkeleyDB.

The above is the method of changing the user's initial password in MySQL 5.7 that I introduced to you. 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. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • What to do if you forget the initial password when installing MySQL on Mac
  • How to install and modify the initial password of mysql5.7.18 under Centos7.3
  • What to do if you forget the initial password of MySQL on MAC
  • What to do if you forget the initial password of MySQL on MAC
  • A simple and effective solution to forget the initial password when installing MySQL

<<:  More than 100 lines of code to implement react drag hooks

>>:  Linux kernel device driver system call notes

Recommend

Tutorial on how to quickly deploy clickhouse using docker-compose

ClickHouse is an open source column-oriented DBMS...

Implementing custom scroll bar with native js

This article example shares the specific code of ...

MySQL query syntax summary

Preface: This article mainly introduces the query...

Nginx reverse proxy to go-fastdfs case explanation

background go-fastdfs is a distributed file syste...

Introduction to Javascript DOM, nodes and element acquisition

Table of contents DOM node Element node: Text nod...

How to install MySQL Community Server 5.6.39

This article records the detailed tutorial of MyS...

Detailed explanation of how Vue components transfer values ​​to each other

Table of contents Overview 1. Parent component pa...

Implementation of CSS3 button border animation

First look at the effect: html <a href="#...

Detailed explanation of the use of MySQL paradigm

1. Paradigm The English name of the paradigm is N...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

Make your text dance with the marquee attribute in HTML

Syntax: <marquee> …</marquee> Using th...

How to use JS to implement waterfall layout of web pages

Table of contents Preface: What is waterfall layo...

CSS pixels and solutions to different mobile screen adaptation issues

Pixel Resolution What we usually call monitor res...