mysql 用户/密码/权限操作

由于最近使用mysql遇到了修改用户密码的问题,所以一块学习了一下关于用户的相关操作;

1. 创建新账户

CREATE USER ‘jeffrey‘@‘localhost‘;

  

2. 账户设置密码

#当前用户设置密码
SET PASSWORD = PASSWORD(‘mypass‘);

#给指定账户设置密码
SET PASSWORD FOR ‘jeffrey‘@‘localhost‘ = PASSWORD(‘mypass‘);

3. 给账户赋权限

#赋权限
GRANT ALL ON db1.* TO ‘jeffrey‘@‘localhost‘;

#刷新权限
flush privileges;

  

  刷新权限的方式有多种,如上只是其中的一种方式。详情点击 或 如下:

   可赋值的权限如下表:

Table 13.3 Permissible Privileges for GRANT and REVOKE

Privilege Meaning and Grantable Levels
ALL [PRIVILEGES] Grant all privileges at specified access level except GRANT OPTION and PROXY.
ALTER Enable use of ALTER TABLE. Levels: Global, database, table.
ALTER ROUTINE Enable stored routines to be altered or dropped. Levels: Global, database, procedure.
CREATE Enable database and table creation. Levels: Global, database, table.
CREATE ROUTINE Enable stored routine creation. Levels: Global, database.
CREATE TABLESPACE Enable tablespaces and log file groups to be created, altered, or dropped. Level: Global.
CREATE TEMPORARY TABLES Enable use of CREATE TEMPORARY TABLE. Levels: Global, database.
CREATE USER Enable use of CREATE USERDROP USERRENAME USER, and REVOKE ALL PRIVILEGES. Level: Global.
CREATE VIEW Enable views to be created or altered. Levels: Global, database, table.
DELETE Enable use of DELETE. Level: Global, database, table.
DROP Enable databases, tables, and views to be dropped. Levels: Global, database, table.
EVENT Enable use of events for the Event Scheduler. Levels: Global, database.
EXECUTE Enable the user to execute stored routines. Levels: Global, database, table.
FILE Enable the user to cause the server to read or write files. Level: Global.
GRANT OPTION Enable privileges to be granted to or removed from other accounts. Levels: Global, database, table, procedure, proxy.
INDEX Enable indexes to be created or dropped. Levels: Global, database, table.
INSERT Enable use of INSERT. Levels: Global, database, table, column.
LOCK TABLES Enable use of LOCK TABLES on tables for which you have the SELECT privilege. Levels: Global, database.
PROCESS Enable the user to see all processes with SHOW PROCESSLIST. Level: Global.
PROXY Enable user proxying. Level: From user to user.
REFERENCES Enable foreign key creation. Levels: Global, database, table, column.
RELOAD Enable use of FLUSH operations. Level: Global.
REPLICATION CLIENT Enable the user to ask where master or slave servers are. Level: Global.
REPLICATION SLAVE Enable replication slaves to read binary log events from the master. Level: Global.
SELECT Enable use of SELECT. Levels: Global, database, table, column.
SHOW DATABASES Enable SHOW DATABASES to show all databases. Level: Global.
SHOW VIEW Enable use of SHOW CREATE VIEW. Levels: Global, database, table.
SHUTDOWN Enable use of mysqladmin shutdown. Level: Global.
SUPER Enable use of other administrative operations such as CHANGE MASTER TOKILLPURGE BINARY LOGSSET GLOBAL, and mysqladmin debug command. Level: Global.
TRIGGER Enable trigger operations. Levels: Global, database, table.
UPDATE Enable use of UPDATE. Levels: Global, database, table, column.
USAGE Synonym for “no privileges”

 4. 常用mysql命令

#查看当前用户
select current_user;
select current_user();

#格式化输出结果 字符/G 代表格式化输出
select * from t where t.id = 1/G;

5. 参考链接

  1.  https://dev.mysql.com/doc/refman/5.6/en/set-password.html

  2. https://dev.mysql.com/doc/refman/5.7/en/create-user.html#create-user-previous

  3. https://dev.mysql.com/doc/refman/5.6/en/grant.html

  4. https://dev.mysql.com/doc/refman/5.7/en/privilege-changes.html

  

时间: 2024-12-16 21:41:48

mysql 用户/密码/权限操作的相关文章

MYSQL用户及权限操作

在cmd中操作MySql 步骤: net start mysql 启动服务 mysql -uroot -ppassward 登录数据库 Mysql -h127.0.0.1 -uroot -p 登录远程主机 Exit 退出登录 Net stop mysql 关闭服务 常见问题: 启动服务提升"服务名无效" 输入services.msc查看服务列表是否有mysql服务 切换到mysql/bin目录输入mysqld.exe -install添加服务 若提示install/remove of

Mysql用户密码设置修改和权限分配

我的mysql安装在c:\mysql 一.更改密码 第一种方式: 1.更改之前root没有密码的情况 c:\mysql\bin>mysqladmin -u root password "your password" 2.更改之前root有密码的情况,假如为123456 c:\mysql\bin>mysqladmin -u root -p123456 password "your password" 注意:更改的密码不能用单引号,可用双引号或不用引号 第二

【一个小坑】Mysql 用户、权限和密码。(创建的用户无法登入)

Mysql Version: Mysql 5.6. Mysql 中 用户的权限,不仅跟用户相关,还和用户的登入密码(口令)相关. 比如以下语句: 创建用户 create user 'name'@'localhost' identified by 'password'. 授权: grant all on database.* to username. 这样的语句,你用name + password登入Mysql 会被拒绝. 应该养成好的习惯. grant all on database.* to

mysql 用户和权限管理

1.用户连接到 mysql,并作各种查询,对用户权你是谁限的检查1.对于 mysql 你有没有权限连接上来,必须满足下面三个参数:1.你从哪里来?:host 2.你是谁? :user 1.新增一个用户: 命令格式:grant [权限1,权限2,权限3] on *.* to [email protected] identified by password 2.查看一个用户的权限:select * from user where user=root \G; 3.回收权限:revoke [权限] on

第01章 mySQL用户和权限管理v1

韩立刚老师视频教学网站 http://www.91xueit.com 韩老师QQ458717185 第01章 MySQL用户和权限管理 mySQL权限控制通过两步控制,能不能连接(验证用户身份),能执行什么操作(验证用户权限). 验证用户身份,需要验证,连接mySQL的计算机的IP地址或计算机名称,用户账户和密码.验证过程如下: 管理mySQL用户 查看mySQL用户账户 mySQL用户存储在mysql数据库的user表,该表在mySQL服务启动时自动加载到内存,控制用户的登录. [[email

Linux运维 第四阶段 (五) MySQL用户和权限管理

Linux运维 第四阶段 (四)MySQL用户和权限管理 1.相关概念: >mysql用户: 类似VSFTPD虚拟用户: 密码,自己独有的加密机制,PASSWORD函数: 用户名@主机: 用户名16字符以内,主机(主机名.IP.网络地址.通配符(%,_): --skip-name-resolve(跳过名称解析,可提高用户连接速度) 账号是用来认证的: >RENAME USER  'old_name'@'host'  TO  'new_name'@'host;  (重命名用户) >权限,授

【转】mysql 用户及权限管理 小结

转自:https://www.cnblogs.com/SQL888/p/5748824.html mysql 用户及权限管理 小结 MySQL 默认有个root用户,但是这个用户权限太大,一般只在管理数据库时候才用.如果在项目中要连接 MySQL 数据库,则建议新建一个权限较小的用户来连接. 在 MySQL 命令行模式下输入如下命令可以为 MySQL 创建一个新用户: 1 CREATE USER username IDENTIFIED BY 'password'; 新用户创建完成,但是此刻如果以

入门MySQL——用户与权限

前言:? 前面几篇文章为大家介绍了各种SQL语法的使用,本篇文章将主要介绍MySQL用户及权限相关知识,如果你不是DBA的话可能平时用的不多,但是了解下也是好处多多. 1.创建用户 官方推荐创建语法为: CREATE USER [IF NOT EXISTS] user [auth_option] [, user [auth_option]] ... [REQUIRE {NONE | tls_option [[AND] tls_option] ...}] [WITH resource_option

MySQL用户与权限

1.MySQL用户和权限管理 user表:包含用户的帐号,全局权限 db表:数据库级别的权限定义 tables_priv表:表级别权限 columns_priv表:列级别权限 procs_priv表:存储过程和存储函数相关的权限 proxies_priv表:代理用户权限 2.用户帐号: 用户名@主机构成 用户名:16个字符以内 主机: 主机名:www.baidu.com| mysql IP:192.168.1.100 网络地址:192.168.1.0/255.255.255.0 通配符:% 和