View all users and permissions in the MySQL database

Source: Internet
Author: User

View all users in the MySQL databasemysql> SELECT DISTINCT CONCAT (' User: ', user, ' @ ', host, '; ') as query from Mysql.user;
+---------------------------------------+
| Query |
+---------------------------------------+
| User:' cactiuser ' @ '% '; |
| User:' common_user ' @ '% '; |
| User:' dba ' @ '% '; |
| User:' root ' @ '% '; |
| User:' slave ' @ '% '; |
| User:' wtgame ' @ '% '; |
| User:' root ' @ ' 127.0.0.1 '; |
| User:' webman ' @ ' 127.0.0.1 '; |
| User:' root ' @ ' 192.168.166.200 '; |
| User:' cactiuser ' @ ' 192.168.166.202 '; |
| User:' root ' @ ' 192.168.166.202 '; |
| User:' @ ' localhost '; |
| User:' cacti ' @ ' localhost '; |
| User:' cactiuser ' @ ' localhost '; |
| User:' dba ' @ ' localhost '; |
| User:' extmail ' @ ' localhost '; |
| User:' javauser ' @ ' localhost '; |
| User:' root ' @ ' localhost '; |
| User:' webman ' @ ' localhost '; |
| User:' @ ' Localhost.localdomain '; |
| User:' root ' @ ' Localhost.localdomain '; |
+---------------------------------------+
Rows in Set (0.01 sec)to view the permissions of a specific user in a database
Mysql> Show grants for' cactiuser ' @ '% ';
+-------------------------------------------------------------------------------------------------------------- -----+
| Grants for [email protected]%|
+-------------------------------------------------------------------------------------------------------------- -----+
| GRANT PROCESS, SUPER on *. * to' cactiuser ' @ '% 'identified by PASSWORD ' *daff917b80e3314b1abecba9df8785afd342ce89 ' |
| GRANT all privileges on ' cacti '.' cactiuser ' @ '% '                                                              |
+-------------------------------------------------------------------------------------------------------------- -----+
2 rows in Set (0.00 sec)Mysql>SELECT * from Mysql.user where user= ' Cactiuser ' \g
1. Row ***************************
Host:%
User:cactiuser
Password: *daff917b80e3314b1abecba9df8785afd342ce89
Select_priv:n
Insert_priv:n
Update_priv:n
Delete_priv:n
Create_priv:n
Drop_priv:n
Reload_priv:n
Shutdown_priv:n
Process_priv:y
File_priv:n
Grant_priv:n
References_priv:n
Index_priv:n
Alter_priv:n
Show_db_priv:n
Super_priv:y
Create_tmp_table_priv:n
Lock_tables_priv:n
Execute_priv:n
Repl_slave_priv:n
Repl_client_priv:n
Create_view_priv:n
Show_view_priv:n
Create_routine_priv:n
Alter_routine_priv:n
Create_user_priv:n
Event_priv:n
Trigger_priv:n
Ssl_type:
Ssl_cipher:
X509_issuer:
X509_subject:
max_questions:0
max_updates:0
max_connections:0
max_user_connections:0Viewing the user table structure requires specific items to be queried in conjunction with the table structure
mysql> desc Mysql.user;
+-----------------------+-----------------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------------------+-----------------------------------+------+-----+---------+-------+
| Host | char (60) | NO |         PRI |       | |
| User | char (16) | NO |         PRI |       | |
| Password | char (41) |     NO |         |       | |
| Select_priv | Enum (' N ', ' Y ') |     NO | |       N | |
******************
******************
+-----------------------+-----------------------------------+------+-----+---------+-------+
All rows in Set (0.00 sec)

View all users and permissions in the MySQL database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.