본문 바로가기
Library/DB

[MySQL] 권한 부여

by kdg99 2023. 6. 7.
//MySQL 접속
mysql -u root -p

//DB 생성
use mysql;

//User 조회
select user, host from user;

//User 생성
create user '사용자명'@'host' identified by '비밀번호';
/*
host옵션
localhost 내부접근
% 모든 외부 접근
xxx.xxx.% 특정ip대역
*/

//권한 부여
grant all privileges on DB이름.* to '사용자'@'host';
flush privileges;

댓글