标签:表示 sel red 撤销 删除用户 查看 option databases 远程主机
1
|
CREATE USER ‘username‘@‘host‘IDENTIFIED BY ‘password‘;
|
1
2
3
4
5
|
CREATE USER ‘dog‘@‘localhost‘IDENTIFIED BY ‘123456‘;
CREATE USER ‘pig‘@‘192.168.1.101_‘IDENDIFIED BY ‘123456‘;
CREATE USER ‘pig‘@‘%‘IDENTIFIED BY ‘123456‘;
CREATE USER ‘pig‘@‘%‘IDENTIFIED BY ‘‘;
CREATE USER ‘pig‘@‘%‘;
|
1
|
GRANT privileges ON databasename.tablename TO ‘username‘@‘host‘
|
1
2
|
GRANT SELECT, INSERT ON test.user TO ‘pig‘@‘%‘;
GRANT ALL ON *.* TO ‘pig‘@‘%‘;
|
1
|
GRANT privileges ON databasename.tablename TO ‘username‘@‘host‘WITH GRANT OPTION;
|
1
|
SET PASSWORD FOR ‘username‘@‘host‘= PASSWORD(‘newpassword‘);
|
1
|
SET PASSWORD = PASSWORD("newpassword");
|
1
|
REVOKE privilege ON databasename.tablename FROM ‘username‘@‘host‘;
|
1
|
REVOKE SELECT ON *.* FROM ‘pig‘@‘%‘;
|
1
|
DROP USER ‘username’@‘host’;
|
|
创建用于localhost连接的用户并指定密码
mysql> create user ‘pcom‘@‘localhost‘identified by ‘aaa7B2249‘;
Query OK, 0 rows affected (0.00 sec)
创建数据库
mysql> create database pcom default character setutf8 collate utf8_bin;
Query OK, 1 row affected (0.00 sec)
给本地用户授权, 这里不需要指定密码
mysql> grant all on pcom.* to ‘pcom‘@‘localhost‘;
Query OK, 0 rows affected (0.00 sec)
给其他IP地址下的用户授权, 注意: 这里必须指定密码, 否则就可以无密码访问
mysql> grant all on pcom.* to ‘pcom‘@‘192.168.0.0/255.255.0.0‘identified by ‘aaa7B2249‘;
Query OK, 0 rows affected (0.00 sec)
同理
mysql> grant all on pcom.* to ‘pcom‘@‘172.20.0.0/255.255.0.0‘identified by ‘aaa7B2249‘;
Query OK, 0 rows affected (0.00 sec)
Done!
|
|
ALTER
Allows use of ALTER TABLE.
ALTER ROUTINE
Alters or drops stored routines.
CREATE
Allows use of CREATE TABLE.
CREATE ROUTINE
Creates stored routines.
CREATE TEMPORARY TABLE
Allows use of CREATE TEMPORARY TABLE.
CREATE USER
Allows use of CREATE USER, DROP USER, RENAME USER, and REVOKE ALL PRIVILEGES.
CREATE VIEW
Allows use of CREATE VIEW.
DELETE
Allows use of DELETE.
DROP
Allows use of DROP TABLE.
EXECUTE
Allows the user to run stored routines.
FILE
Allows use of SELECT… INTO OUTFILE and LOAD DATA INFILE.
INDEX
Allows use of CREATE INDEX and DROP INDEX.
INSERT
Allows use of INSERT.
LOCK TABLES
Allows use of LOCK TABLES on tables forwhichthe user also has SELECT privileges.
PROCESS
Allows use of SHOW FULL PROCESSLIST.
RELOAD
Allows use of FLUSH.
REPLICATION
Allows the user to ask where slave or master
CLIENT
servers are.
REPLICATION SLAVE
Needed forreplication slaves.
SELECT
Allows use of SELECT.
SHOW DATABASES
Allows use of SHOW DATABASES.
SHOW VIEW
Allows use of SHOW CREATE VIEW.
SHUTDOWN
Allows use of mysqladmin shutdown.
SUPER
Allows use of CHANGE MASTER, KILL, PURGE MASTER LOGS, and SET GLOBAL SQL statements. Allows mysqladmin debug command. Allows one extra connection to be made ifmaximum connections are reached.
UPDATE
Allows use of UPDATE.
USAGE
Allows connection without any specific privileges.
|
1
|
flush privileges;
|
3、DCL(Data Control Language)数据库控制语言 授权,角色控制等
标签:表示 sel red 撤销 删除用户 查看 option databases 远程主机
原文地址:https://www.cnblogs.com/cbil/p/10013600.html