天天看點

mysql授權指令

grant all on *.* to 'remote'@'192.168.1.254' identified by 'password';

remote表示使用者名.

'192.168.1.254' 遠端ip位址或用%代替,表示所有主機可以遠端登入

password表示遠端登陸密碼.  遠端授權,%代表所有

FLUSH PRIVILEGES ; 重新整理授權生效

例:grant all on *.* to 'bshrer'@'%' identified by 'manager';