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:
|
<<: How to delete the container created in Docker
>>: Cross-domain issues in front-end and back-end separation of Vue+SpringBoot
The latest tutorial for installing MySQL 8.0.25 o...
Many of my friends may encounter a problem and do...
Install pymysql pip install pymysql 2|0Using pymy...
I have nothing to do recently, so I tinker with C...
Table of contents 2. Comma operator 3. JavaScript...
First, create a tomcat folder. To facilitate the ...
EXPLAIN shows how MySQL uses indexes to process s...
Recently, the company happened to be doing live b...
Preface JavaScript is one of the widely used lang...
This article example shares the specific code of ...
This old question has troubled countless front-end...
Last time we talked about some SQL query optimiza...
Preface In web applications, in order to save tra...
Many people have been told how to compile from th...
1. Introduction to Navicat 1. What is Navicat? Na...