Docker MySql Container 접속, User 추가 및 권한 부여하기
페이지 정보
본문
1. MySQL 접속
docker exec -it mysqlcontainername bash
mysql -u root -p
password: rootpassword
2. MySQL user table 정보 조회
use mysql;
select host, user, password from user;
3. 사용자 추가
create user 'userID'@'%' identified by 'userpassword';
flush privileges;
4.데이터 베이스 생성
show databases;
create database DBname
5.권한 확인 및 부여
show grants for userID@'%';
grant select, insert, update on DBname.* to 'userID'@'%';
댓글목록
등록된 댓글이 없습니다.