MySQL사용자 1. 사용자 추가하기 -MySQL 8.0 Command Line Client 'root' 계정으로 로그인 -로컬에서 접속 가능한 사용자 추가하기 create user '사용자명'@localhost' identified by '사용자 비밀번호'; create user 'apple'@'localhost' identified by '1111'; -DB권한 부여하기 grant all privileges on *.* to '사용자'@'localhost'; #모든 DB에 접근 가능 grant all privileges on 데이터베이스명.* to 'apple'@'localhost'; flush privileges; #새로운 세팅을 적용 ✔ 할당 권한 상세 옵션 create, drop, alter :..