ravuthz / note-mysql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MySQL Note

Connect to mysql with usernane and password

mysql -u <username> -p

List users with single line command

mysql -u root -p -e 'SELECT user,authentication_string,plugin,host FROM mysql.user';

Users and Permissions

About