유저생성 일단 root 계정으로 접속한 상태에서 진행이 가능하다. mysql 유저는 접속을 시도하려는 곳을 명시해서 아래와 같이 생성해야 한다. 아래는 로컬에서 접속할 수 있는 test 유저와 원격 접속 가능한 test 유저를 생성한 것이다. create user 'test'@'localhost' identified by 'test'; create user 'test'@'%' identified by 'test'; 유저 삭제명령도 아래와 같이 접속을 시도하려는 곳을 포함해서 진행한다. drop user 'test'@'localhost' identified by 'test'; drop user 'test'@'%' identified by 'test'; 생성한 유저는 아래와 같이 확인할 수 있다. use..