重庆小潘seo博客

当前位置:首页 > 重庆网络营销 > 小潘杂谈 >

小潘杂谈

两种MySQL查询用户权限的方法

时间:2020-09-22 21:00:06 作者:重庆seo小潘 来源:
介绍两种查看MySQL用户权限的两种方法 1、 使用MySQL grants命令mysql show grants for username@localhost;+---------------------------------------------------------------------+| Grants for root@localhost|+--------------------------------------

介绍两种查看MySQL用户权限的两种方法

1、 使用MySQL grants命令mysql> show grants for username@localhost;+---------------------------------------------------------------------+| Grants for root@localhost|+---------------------------------------------------------------------+| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION |+---------------------------------------------------------------------+需要注意的是:

● username和ip的组合需要是在mysql.user表中存在的,具体可以通过 select * from mysql.user 命令查看

● ip地址如果是通配符格式需要加引号,例如:show grants for root@'172.%';

推荐:《mysql教程》

2、 使用MySQL select命令mysql> select * from mysql.user where user='root' and host='localhost' G;*************************** 1. row ***************************Host: localhostUser: rootPassword: **********************Select_priv: YInsert_priv: YUpdate_priv: YDelete_priv: YCreate_priv: YDrop_priv: YReload_priv: YShutdown_priv: YProcess_priv: YFile_priv: YGrant_priv: YReferences_priv: YIndex_priv: YAlter_priv: YShow_db_priv: YSuper_priv: Y Create_tmp_table_priv: YLock_tables_priv: YExecute_priv: YRepl_slave_priv: YRepl_client_priv: YCreate_view_priv: YShow_view_priv: YCreate_routine_priv: YAlter_routine_priv: YCreate_user_priv: YEvent_priv: YTrigger_priv: YCreate_tablespace_priv: Yssl_type:ssl_cipher:x509_issuer:x509_subject:max_questions: 0max_updates: 0max_connections: 0max_user_connections: 0plugin: mysql_native_password authentication_string:password_expired: N1 row in set (0.01 sec)更多编程相关内容,请关注小潘博客编程入门栏目!以上就是两种MySQL查询用户权限的方法的详细内容,更多请关注小潘博客其它相关文章!