Etc

[MySQL] 사용자 추가, 권한 설정, 삭제

sssbin 2021. 9. 13. 19:53

 

 

** mysql 접속하기 (맥북)

터미널 열고 → cd /usr/local/mysql/bin./mysql -u root -p

 

 

1. 사용자 추가

create user 'username'@'localhost' identified by 'password';

 

2. 사용자 권한 설정

grant all privileges on *.* to 'username'@'localhost';
flush privileges;
grant all privileges on db이름.table이름 to 'username'@'localhost';
flush privileges;

 

3. 사용자 삭제

drop user 'username'@'localhost';

 

 

'Etc' 카테고리의 다른 글

211008_포미 끝  (8) 2021.10.09
[Github] .DS_Store 파일 삭제  (0) 2021.09.27
[AWS] EC2 파일 업로드 / 다운로드  (0) 2021.09.22
[Github] 토큰 인증 로그인  (0) 2021.08.17
[Github] 기본 사용법 간단 정리  (0) 2021.08.17