Data/MySQL

[MySQL] MySQL 계정생성 ,(DATAGRIP 연결용 비공개)

100winone 2020. 4. 17. 01:38

create user '계정아이디'@localhost identified by '비밀번호';


create user 'winone'@'%' identified by 'songnamcheong123!';

 

grant all privileges on `FinishedDay`.* to `winone`@`%` identified by 'songnamcheong123!' with grant option;

flush privileges

 

 

 

 

https://medium.com/cory-mayfield/linking-amazon-rds-with-jetbrains-datagrip-d5cc0e2f44f4