Introduction to adding new users to MySql, creating databases for users, and assigning permissions to users

Introduction to adding new users to MySql, creating databases for users, and assigning permissions to users

1. Add a new user

Only allow local IP access

create user 'test'@'localhost' identified by '123456';

Allow external IP access

create user 'test'@'%' identified by '123456';

Refresh Authorization

flush privileges;

2. Create a database for the user

create database test DEFAULT CHARSET utf8 COLLATE utf8_general_ci;

3. Assign permissions to users

Grant users all permissions to operate the database through the external IP

grant all privileges on `testdb`.* to 'test'@'%' identified by '123456';

Grant users permission to operate all databases through external IP

grant all privileges on *.* to 'test'@'%' identified by '123456';

Refresh Authorization

flush privileges;

This is the end of this article about how to add new users in MySql, create databases for users, and assign permissions to users. For more information about how to add new users in MySql, create databases for users, and assign permissions to users, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to create a MySQL database and support Chinese characters
  • Mysql anonymous login cannot create a database problem solution
  • mysql create database, add users, user authorization practical method
  • Two ways to create a MySQL database
  • Create database and database table code with MySQL
  • Example of creating a database using PHP
  • Create database php code and write your own BLOG system with PHP
  • PHP Desktop Center (I) Creating a database
  • MySQL and PHP basics and application topics: creating database tables

<<:  Implementation of nested jump of vue routing view router-view

>>:  Vue implements a small countdown function

Recommend

Detailed installation process of Jenkins on Linux

Table of contents 1. Install JDK 2. Install Jenki...

Detailed explanation of Docker usage under CentOS8

1. Installation of Docker under CentOS8 curl http...

Vue directives v-html and v-text

Table of contents 1. v-text text rendering instru...

Detailed explanation of JavaScript prototype and examples

Table of contents The relationship between the co...

Why is your like statement not indexed?

Preface This article aims to explain the most bor...

Detailed explanation of server-id example in MySQL master-slave synchronization

Preface When we build a MySQL cluster, we natural...

How to use selenium+testng to realize web automation in docker

Preface After a long time of reading various mate...

Detailed steps to install mysql in Win

This article shares the detailed steps of install...

How to use uni-app to display buttons and search boxes in the top navigation bar

Recently, the company is preparing to develop an ...

mysql uses stored procedures to implement tree node acquisition method

As shown in the figure: Table Data For such a tre...

Detailed explanation of mysql scheduled tasks (event events)

1. Brief introduction of the event An event is a ...

WHMCS V7.4.2 Graphical Installation Tutorial

1. Introduction WHMCS provides an all-in-one solu...