grant all privileges 명령어는 유저가 데이터베이스에 접근할 수 있도록 권한을 부여할 때 사용합니다. grant all privileges on [데이터베이스명.테이블명] to [사용자@호스트] identified by '비밀번호' [with grant option]; Ex) grant all privileges on TEST.* to 'testuser'@'localhost' identified by '비밀번호'; TEST라는 데이터베이스의 모든 테이블에 testuser라는 유저가 로컬에서 접근 가능하게 합니다. *는 전체를 의미합니다. grant all privileges on TEST.* to 'testuser'@'127.0.0.1' identified by '비밀번호' with gra..