許可權管理:建立使用者
create user '使用者名稱'@'ip位址' identified by '密碼';
creaee user 'zekai'@'192.168.1.123' identified by '123qwe';
creaee user 'zekai'@'192.168.1.%' identified by '123qwe';
create user 'zekai'@'%' identified by '123qwe';
刪除使用者
drop user '使用者名稱'@'ip位址';
修改使用者
rename user '使用者名稱'@'ip位址' to '新使用者名稱'@'ip位址';
修改密碼
set password for '使用者名稱'@'ip位址' = password('新密碼')
檢視所有使用者(root下)
select distinct concat('user: ''',user,'''@''',host,''';') as query from mysql.user;
授權:grant 許可權 on 資料庫.表 to '使用者'@'ip位址' -- 授權
grant select on db1.* to 'zekai'@'%';
grant select on *.* to 'zekai'@'%';
grant select, insert, delete on db1.* to 'zekai'@'%';
記住:flush privileges;
MySQLStudy 賬號許可權管理
許可權管理 建立使用者 create user 使用者名稱 ip位址 identified by 密碼 creaee user zekai 192.168.1.123 identified by 123qwe creaee user zekai 192.168.1.identified by 123...
賬號與許可權管理 使用者賬號與組賬號
五 使用者賬號的初始配置檔案3個重要隱藏檔案 六 組賬號檔案 七 組賬號常用命令 uid和gid uid user identify,使用者標識號 gid gronp identify,組標識號 root localhost head 2 etc passwd root x 0 0 root roo...
賬號和許可權管理
1.使用者的管理 增 useradd 選項 使用者名稱 選項 d 指定家目錄 m 不指定家目錄 s 指定使用者的登陸shell g 指定使用者的基本組 g 指定使用者的附加組 可指定gid 刪 userdel r 使用者名稱 刪除使用者的同時也將家目錄一併刪除 改 usermod 選項 使用者名稱 ...