mysql 계정 관리자 권한 부여하기 mysql

grant all privileges on *.* to 'admin'@'localhost' identified by 'admin' with grant option;

grant all privileges on *.* to 'admin'@'%' identified by 'admin' with grant option;

flush privileges;

Leave Comments