본문 바로가기
Linux/Mysql

mysql user 생성 및 권한 설정

by 준섭이 2020. 6. 1.
728x90

1. 유저 생성

create user 'userid'@'%' identified by '비밀번호';
- %의 경우, 접속할 host 주소 이며, %는 모든 host 접속을 가능하게 한다.
flush privileges;

2. 권한 설정
 - 모든 권한 설정
 grant all privileges on *.* username@host identified by 'password';
 flush privileges;

 - select 권한 설정
 grant select on 'test'.* to 'user'@'host' identied by 'password';

 - kof DB에 select, insert, update, delete 권한을 192.168.1.0/24 으로 접근하는 bluemary에게 권한 주기
 grant select, insert, update, delete on 'kof'.* to 'bluemary'@'192.168.1.%';
 flush privileges;

 

 

 

 

'Linux > Mysql' 카테고리의 다른 글

MariaDB 설치  (1) 2023.12.27
mysql dump 및 restore  (0) 2020.06.01
리눅스 mysql 설치  (1) 2016.10.31
mysql 실행 시 -bash: mysql: command not found  (0) 2014.02.07
Mysql InnoDB 설정 (my.cnf)  (0) 2013.12.19