The easiest way to create a new user and grant permissions to MySQL

The easiest way to create a new user and grant permissions to MySQL

Create a user:

create user 'oukele'@'%' identified by 'oukele';

If the information listed below is prompted, you need to refresh the permission table

The MySQL server is running with the --skip-grant-tables option so it cannot execute this st...

Here are the steps:

Extended Learning

Create a new mysql user and grant remote access rights

[root@demo /]# mysql -u root -p #Log in to the server database

Enter password:123xxx

#1. Create a new user testuser with password testuserpass

CREATE USER 'testuser'@'localhost' IDENTIFIED BY 'testuserpass';

#2. Create a database testDB

create database testDB;

#3. Execute the command to add testDB permissions for the testuser user

grant all privileges on testDB.* to testuser@localhost identified by 'testuserpass';

#4. Execute the command to add remote access permissions for the testuser user

GRANT ALL PRIVILEGES ON testDB.* TO 'testuser'@'%' IDENTIFIED BY 'testuserpass' WITH GRANT OPTION;

#5. Refresh the permission table

flush privileges;

The above is all the content of this knowledge point. More relevant knowledge points can be found in the related articles below.

You may also be interested in:
  • MySQL permission control detailed explanation
  • Detailed tutorial on how to create a user in mysql and grant user permissions
  • Mysql modify stored procedure related permissions issue
  • How to set remote access permissions in MySQL 8.0
  • How to use DCL to manage users and control permissions in MySQL
  • How to create users and manage permissions in MySQL
  • Example analysis of mysql user rights management
  • Summary of methods for querying MySQL user permissions
  • How to enable remote access permissions in MYSQL
  • Detailed explanation of MySQL user and permission management
  • MySQL permission control details analysis

<<:  How to delete the container created in Docker

>>:  Cross-domain issues in front-end and back-end separation of Vue+SpringBoot

Recommend

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...

The difference between MySQL database host 127.0.0.1 and localhost

Many of my friends may encounter a problem and do...

Use Python to connect to MySQL database using the pymysql module

Install pymysql pip install pymysql 2|0Using pymy...

Problems and solutions of using TweenMax animation library in angular

I have nothing to do recently, so I tinker with C...

Summary of uncommon js operation operators

Table of contents 2. Comma operator 3. JavaScript...

How to use Docker to build a tomcat cluster using nginx (with pictures and text)

First, create a tomcat folder. To facilitate the ...

Detailed explanation of the use of mysql explain (analysis index)

EXPLAIN shows how MySQL uses indexes to process s...

Detailed explanation of Vue's live broadcast function

Recently, the company happened to be doing live b...

JavaScript type detection method example tutorial

Preface JavaScript is one of the widely used lang...

Vue+element ui realizes anchor positioning

This article example shares the specific code of ...

How to make a div height adaptive to the browser height

This old question has troubled countless front-end...

4 flexible Scss compilation output styles

Many people have been told how to compile from th...

Navicat Premium operates MySQL database (executes sql statements)

1. Introduction to Navicat 1. What is Navicat? Na...