mysql8 계정생성

create user '유저아이디'@'localhost' identified by '비밀번호';

grant all privileges on *.* to '유저아이디'@'localhost' with grant option;

 

- 모든 테이블 권한을 주는 계정 생성 방법

- localhost 접속만 허용

- 외부에서 접근시키고 싶다면 localhost -> %로 변경해주면 된다.