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';

你可能感兴趣的:(数据库,mysql,职场,休闲)