mysql創建新用戶並賦予權限
1、以管理員身份登錄mysql
mysql -u root -p
2、選擇mysql數據庫
www.2cto.com
use mysql
3、創建用戶並設定密碼
insert into user (Host,User,Password)
values ('localhost', 'test',password('1234'))
4、使操作生效
flush privileges
5、為用戶創建數據庫
www.2cto.com
create database testdb
6、為用戶賦予操作數據庫testdb的所有權限
grant all privileges on testdb.* to test@localhost identified '1234'
7、使操作生效
flush privileges
8、用新用戶登錄
mysql -u test -p