1. Create a new user: 1. Execute SQL statement to create a new one (recommended): INSERT INTO `mysql`.`user` ( `Host`, `User`, `Password`, `ssl_cipher`, `x509_issuer`, `x509_subject`, `authentication_string` ) VALUES ( '%', -- Allow remote access 'zhangsan', -- User name '*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9', -- Plain text password: 123456 '', '', '', '' ); select * from user where `user` = 'zhangsan'; 2. Use tools to create: 2. Set permissions 1. Configure the database and data table (remember to save): 2. Set [Server Permissions] to revoke all 3. Refresh database permissions: MariaDB [(none)]> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.000 sec) 4. Configure the connection: 3. Test permissions: 1. Test results show that the databases and tables without permissions have been blocked: 2. Test whether there is deletion permission: The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Several ways to easily traverse object properties in JS
>>: Nginx local directory mapping implementation code example
In a web page, the <input type="file"...
CSS3 can create animations, which can replace man...
1. Set a directory whitelist: Do not set restrict...
1. Add a hard disk 2. Check the partition status:...
Fault site: Log in to the MySQL server and get th...
It is very important to monitor the operating sta...
There are two ways to configure multiple projects...
Currently, Docker has an official mirror for Chin...
Sorting query (order by) In e-commerce: We want t...
<textarea></textarea> is used to crea...
Table of contents Two ways to solve the problem o...
Write configuration files in server.xml and conte...
What should I do if MySQL fails to connect to the...
Detailed example of getting the maximum value of ...
How to quickly copy a table First, create a table...