How to add users to mysql database

青灯夜游
Release: 2022-06-14 17:18:45
Original
12270 people have browsed it

Two methods to add users: 1. Use the CREATE USER statement to create a new user and set the corresponding password, the syntax is "CREATE USER user IDENTIFIED BY [PASSWORD] 'password']". 2. Use the GRANT statement to create a new user, with the syntax "GRANT user authority ON database.table TO user [IDENTIFIED BY [PASSWORD] 'password']".

How to add users to mysql database

The operating environment of this tutorial: windows7 system, mysql8 version, Dell G3 computer.

When MySQL is installed, a user named root will be created by default. This user has super privileges and can control the entire MySQL server.

In the daily management and operation of MySQL, in order to prevent someone from maliciously using the root user to control the database, we usually create some users with appropriate permissions and use the root user as little or as little as possible to log in to the system. to ensure secure access to data.

Two ways to add (create) users to mysql database

  • Use the CREATE USER statement to create users

  • Use the GRANT statement to create a user

1. Use the MySQL CREATE USER statement to create a new user

You can use the CREATE USER statement to create a MySQL user and set the corresponding password. . The basic syntax format is as follows:

CREATE USER 用户 IDENTIFIED BY [ PASSWORD ] 'password'];
Copy after login

1) User

specifies the creation of a user account, in the format username'@'hostname. Here user_name is the user name, and host_name is the host name, which is the name of the host used by the user to connect to MySQL. If only the user name is given without specifying the host name during the creation process, the host name defaults to "%", which represents a group of hosts, that is, permissions are open to all hosts.

3) IDENTIFIED BY clause

is used to specify the user password. New users do not need to have an initial password. If the user does not have a password, this clause can be omitted.

2) PASSWORD 'password'

PASSWORD means using a hash value to set the password. This parameter is optional. If the password is a plain string, there is no need to use the PASSWORD keyword. 'password' represents the password used by the user to log in and needs to be enclosed in single quotes.

Note: The password must be in clear text. MySQL encrypts passwords before saving user accounts to theusertable.

For example, to create a new user to connect to the MySQL database server with passworddbadmin, use the following statement:localhostsecretCREATE USER

CREATE USER dbadmin@localhost IDENTIFIED BY 'secret';
Copy after login

To view the permissions of a user account, use the followingSHOW GRANTSstatement:

SHOW GRANTS FOR dbadmin@localhost;
Copy after login

How to add users to mysql database

The*.*in the result indicates that the user accountdbadmincan only log in to the database server and has no other permissions. To grant permissions to a user, use theGRANTstatement.

Please note that the part before the dot (.) represents the database, and the part after the dot (.) represents the table, for example,database.table

To allow a user account to connect from any host, use the percent (%)wildcard character, as shown in the following example:

CREATE USER superadmin@'%'IDENTIFIED BY 'secret';
Copy after login

Percent wildcard character%has the same effect as used in theLIKEoperator, for example, to allow themysqladminuser account to connect from any subdomain of thebegtut.comhost To the database server, use the percent wildcard character%as shown below:

CREATE USER mysqladmin@'%.begtut.com'IDENTIFIED by 'secret';
Copy after login

Please note that you can also use the underscore wildcard character _ in theCREATE USERstatement.

If you omit thehostnamepart of the user account, MySQL will accept it and allow the user to connect from any host. For example, the following statement creates a new user account namedremotethat can connect to the database server from any host:

CREATE USER remote;
Copy after login
Copy after login

You can see that theremoteuser account is granted Permissions, as follows:

SHOW GRANTS FOR remote;
Copy after login

How to add users to mysql database

If you accidentally reference user account'username@hostname', MySQL will create a userusername@hostname nameand allows users to connect from any host, which may not be what you expect.

例如,以下语句创建一个api@localhost可以从任何主机连接到MySQL数据库服务器的新用户。

CREATE USER 'api@localhost';
Copy after login
SHOW GRANTS FOR 'api@localhost';
Copy after login

How to add users to mysql database

如果您创建一个已存在的用户,MySQL将发出错误。例如,以下语句创建一个remote已存在的名为的用户帐户:

CREATE USER remote;
Copy after login
Copy after login

MySQL发出以下错误消息:

ERROR 1396 (HY000): Operation CREATE USER failed for 'remote'@'%'
Copy after login

注意:CREATE USER语句只是一个没有权限的新用户帐户。如果要向用户授予权限,请使用GRANT语句。

2、使用MySQL GRANT 语句新建用户

虽然 CREATE USER 语句可以创建普通用户,但是这种方式不便授予用户权限。于是 MySQL 提供了 GRANT 语句。

使用 GRANT 语句创建用户的基本语法形式如下:

GRANT priv_type ON database.table TO user [IDENTIFIED BY [PASSWORD] 'password']
Copy after login

其中:

  • priv_type 参数表示新用户的权限;

  • database.table 参数表示新用户的权限范围,即只能在指定的数据库和表上使用自己的权限;

  • user 参数指定新用户的账号,由用户名和主机名构成;

  • IDENTIFIED BY 关键字用来设置密码;

  • password 参数表示新用户的密码。

示例:

下面使用 GRANT 语句创建名为 test3 的用户,主机名为 localhost,密码为 test3。该用户对所有数据库的所有表都有 SELECT 权限。SQL 语句和执行过程如下:

mysql> GRANT SELECT ON*.* TO 'test3'@localhost IDENTIFIED BY 'test3'; Query OK, 0 rows affected, 1 warning (0.01 sec)
Copy after login

其中,“*.*” 表示所有数据库下的所有表。结果显示创建用户成功,且 test3 用户对所有表都有查询(SELECT)权限。

技巧:GRANT 语句是 MySQL 中一个非常重要的语句,它可以用来创建用户、修改用户密码和设置用户权限。教程后面会详细介绍如何使用 GRANT 语句修改密码、更改权限。

【相关推荐:mysql视频教程

The above is the detailed content of How to add users to mysql database. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!