티스토리 뷰

mysql 접속

mysql -u root -p

 

사용자 추가

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

 

사용자 삭제

drop user 'user'@'localhost';

 

데이터베이스 생성

create database db명 default character set utf8;

 

권한부여

grant all privileges on db명.테이블 to 'user'@'localhost';
grant all privileges on db명.* to 'user'@'localhost';
grant all privileges on db명.* to 'user'@'%';

flush privileges;

 

권한확인

show grants for 'usuer'@'localhost';
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함