[Database] MySQL 사용자 생성

원알렉스·2020년 7월 29일
0

Database

목록 보기
15/15
post-thumbnail

MySQL 사용자 생성

create user '{username}'@'localhost' identified by '{password}';
grant all privileges on {database}.* to '{username}'@'localhost';
flush privileges;

MySQL 사용자 변경

SYSTEM mysql -u {username} -p
profile
Alex's Develog 🤔

0개의 댓글