mysql -u root -p
// mysql 접근
use mysql;
// mysql 테이블 사용
모든 곳에 접근가능
grant all privileges on *.* to 'root'@'%' identified by '[비번]';
특정 IP 접근
grant all privileges on *.* to 'root'@'[접근 IP]' identified by '[비번]';
권한 제거
revoke all on *.* from 'root'@'%';
revoke all on *.* from 'root@'localhost';
sql 명령어 종료된뒤 사용
flush privileges;