一、以管理員身份登陸mysqlmysql
mysql -u root -psql
二、選擇mysql數據庫數據庫
use mysqlide
三、建立用戶並設定密碼spa
create user 'testuser'@'localhost' identified by 'testpassword'.net
四、使操做生效get
flush privilegestest
五、爲用戶建立數據庫登錄
create database testdb權限
六、爲用戶賦予操做數據庫testdb的全部權限
grant all privileges on testdb.* to test@localhost identified by '1234'
七、使操做生效
flush privileges
八、用新用戶登陸
mysql -u test -p