Summary and sharing of user creation and permission management in MySQL
Recommended learning: mysql video tutorial
1. User management
atmysql
There is a user table in the library
You can view the created users
1. Create a MySQL user
Note: Not available in MySQL To describe the user simply by username, the host must be added. Such as hhy@10.1.1.1
Basic syntax:
mysql> create user '用户名'@'被允许连接的主机名称或主机的IP地址' identified by '用户密码'; mysql> select user,host from mysql.user;
Case: Create a MySQL account, Username: hhy, user password: 123
mysql> create user 'hhy'@'localhost' identified by '123'; /*或*/ mysql> create user 'hhy'@'127.0.0.1' identified by '123';
Case: Create a MySQL account (requires opening a remote connection), host IP address: 192.1668.44.110, username: test, user password :123
mysql> create user 'test'@'192.1668.44.110' identified by '123';
Test:On the host with IP address 192.168.44.110
# yum install mysql -y # mysql -h 192.168.44.110 -P 3306 -uharry -p Enter password:123
Option description:192.168.44.110: MySQL server side IP address
yum installation mysql: represents the MySQL client installed
yum installation mysql-server: represents the installation of MySQL Server side
Case:Create a MySQL account (requires opening a remote connection), host IP network segment: 10.1.1.0, user name: jack, user password: 123
create user 'jack'@'192.168.44.%' identified by '123'
Case: Create a MySQL account (requires opening a remote connection), which is required to be open to all hosts, user name: root, user password: 123
create user 'root'@'%' identified by '123';
2. Delete MySQL user
Basic user:
mysql> drop user 'username'@'host name or IP address of the host';
Special Note:
If you do not specify the name of the host or the IP address of the host when deleting a user, all information about this account will be deleted by default.
Case: Delete the account hhy
drop user 'hhy'@'localhost';
Case: Delete the account jack
drop user 'jack'@'192.168.44.%';
Case:Create two harry accounts (localhost/10.1.1.23), and then delete one of them
mysql> create user 'harry'@'localhost' identified by '123'; mysql> create user 'harry'@'192.168.44.110' identified mysql> drop user 'harry'@'192.168.44.110';
Another way to delete the MySQL account
mysql> delete from mysql.user where user='root' and host='%'; mysql> flush privileges;
3. Modify the MySQL user
Special Note: MySQL user renaming can usually change two parts, one is the user's name, and the other is the host name or IP address of the host that is allowed to access.
Basic syntax:
mysql> rename user 旧用户信息 to 新用户信息;
Case: Change user 'root'@'%' to 'root'@'10.1.1. %'
mysql> rename user 'root'@'%' to 'root'@'10.1.1.%';
Case: Rename 'harry'@'localhost' to 'hhy'@'localhost'
mysql> create user 'tom'@'localhost' identified by '123'; mysql> rename user 'tom'@'localhost' to 'hhy'@'localhost';
Use update statement to update user information
mysql> update mysql.user set user='hhy',host='localhost' where user='tom' and host='localhost'; mysql> flush privileges;
2. Permission management
1. Permission description
All permission description
USAGE 无权限,只有登录数据库,只可以使用test或test_*数据库 ALL 所有权限 以下权限为指定权限 select/update/delete/super/replication slave/reload... with grant option 选项表示允许把自己的权限授予其它用户或者从其他用户收回自己的权限
By default, if the with grant option is not specified when assigning permissions , means that this user cannot grant permissions to other users, but this permission allocation cannot exceed its own permissions.
2. Permission storage location (understand)
- mysql.user:The account number and password of all mysql users, as well as the user's access to the entire database Table permissions (*.*)
- mysql.db:Authorizations for non-mysql libraries are stored here (db.*)
- mysql.table_priv: Authorization of a certain table in a certain database (db.table)
- mysql.columns_priv :Authorization of a certain column in a certain table in a certain database (db.table.col1)
- mysql.procs_priv :Authorization of stored procedures in a certain library
3. Authorize users
Create database table:
create database java; use java; create table tb_student( id mediumint not null auto_increment, name varchar(20), age tinyint unsigned default 0, gender enum('男','女'), address varchar(255), primary key(id) ) engine=innodb default charset=utf8; insert into tb_student values (null,'刘备',33,'男','湖北省武汉市'); insert into tb_student values (null,'貂蝉',18,'女','湖南省长沙市'); insert into tb_student values (null,'关羽',32,'男','湖北省荆州市'); insert into tb_student values (null,'大乔',20,'女','河南省漯河市'); insert into tb_student values (null,'赵云',25,'男','河北省石家庄市'); insert into tb_student values (null,'小乔',18,'女','湖北省荆州市');
Basic syntax:
mysql> grant 权限1,权限2 on 库.表 to 用户@主机 mysql> grant 权限(列1,列2,...) on 库.表 to 用户@主机
Library.Table representation method: *.* represents all data tables in all databases, db_itheima.* represents all data in the db_itheima database Table, db_itheima.tb_admin, represents the tb_admin table in the db_itheima database
Case: Assign query permissions to the java database to the thy account
mysql> grant select on java.* to 'hehanyu'@'192.168.44.%'; mysql> flush privileges;
Case : Assign permissions to the java.tb_student data table to the hehanyu account (required to only change the age field)
mysql> grant update(age) on java.tb_student to 'hehanyu'@'192.168.44.%'; mysql> flush privileges;
Case: Add a root@% account, and then assign all permissions
create user 'root'@'%' identified by '123'; grant all on *.* to 'root'@'%'; flush privileges;
4. Query user permissions
Query current user permissions:
mysql> show grants;
Query other user permissions:
mysql> show grants for '用户名称'@'授权的主机名称或IP地址';
5. with grant option option
mysql> grant all on *.* to 'amy'@'10.1.1.%' identified by '123' with grant option; mysql> grant all on *.* to 'harry'@'10.1.1.%' identified by '123';
As shown in the above command: amy has the function of granting permissions, but harry does not have the function of granting permissions.
If grant authorization does not have the with grant option option, it cannot authorize other users.
6.revoke to recover permissions
Basic syntax:
revoke 权限 on 库.表 from 用户; 查看hehanyu用户权限 mysql> show grants for 'hehanyu'@'192.168.44.%'; 撤消指定的权限 mysql> revoke update on java.tb_student from 'tom'@'192.168.44.%'; 撤消所有的权限 mysql> revoke select on java.* from 'tom'@'192.168.44.%';
推荐学习:mysql视频教程
The above is the detailed content of Summary and sharing of user creation and permission management in MySQL. For more information, please follow other related articles on the PHP Chinese website!

MySQLstringtypesimpactstorageandperformanceasfollows:1)CHARisfixed-length,alwaysusingthesamestoragespace,whichcanbefasterbutlessspace-efficient.2)VARCHARisvariable-length,morespace-efficientbutpotentiallyslower.3)TEXTisforlargetext,storedoutsiderows,

MySQLstringtypesincludeVARCHAR,TEXT,CHAR,ENUM,andSET.1)VARCHARisversatileforvariable-lengthstringsuptoaspecifiedlimit.2)TEXTisidealforlargetextstoragewithoutadefinedlength.3)CHARisfixed-length,suitableforconsistentdatalikecodes.4)ENUMenforcesdatainte

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,2)VARCHARforvariable-lengthtext,3)BINARYandVARBINARYforbinarydata,4)BLOBandTEXTforlargedata,and5)ENUMandSETforcontrolledinput.Eachtypehasspecificusesandperformancecharacteristics,sochoose

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

ToaddusersinMySQLeffectivelyandsecurely,followthesesteps:1)UsetheCREATEUSERstatementtoaddanewuser,specifyingthehostandastrongpassword.2)GrantnecessaryprivilegesusingtheGRANTstatement,adheringtotheprincipleofleastprivilege.3)Implementsecuritymeasuresl

ToaddanewuserwithcomplexpermissionsinMySQL,followthesesteps:1)CreatetheuserwithCREATEUSER'newuser'@'localhost'IDENTIFIEDBY'password';.2)Grantreadaccesstoalltablesin'mydatabase'withGRANTSELECTONmydatabase.TO'newuser'@'localhost';.3)Grantwriteaccessto'

The string data types in MySQL include CHAR, VARCHAR, BINARY, VARBINARY, BLOB, and TEXT. The collations determine the comparison and sorting of strings. 1.CHAR is suitable for fixed-length strings, VARCHAR is suitable for variable-length strings. 2.BINARY and VARBINARY are used for binary data, and BLOB and TEXT are used for large object data. 3. Sorting rules such as utf8mb4_unicode_ci ignores upper and lower case and is suitable for user names; utf8mb4_bin is case sensitive and is suitable for fields that require precise comparison.

The best MySQLVARCHAR column length selection should be based on data analysis, consider future growth, evaluate performance impacts, and character set requirements. 1) Analyze the data to determine typical lengths; 2) Reserve future expansion space; 3) Pay attention to the impact of large lengths on performance; 4) Consider the impact of character sets on storage. Through these steps, the efficiency and scalability of the database can be optimized.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
