728x90
반응형
# 현재 유저별 호스트 확인
select user,host,password from mysql.user order by user;
# 유저 추가
create user 'ID'@'a.b.c.d' identified by 'PASSWD';
grant all privileges on *.* to 'ID'@'a.b.c.d' with grant option;
flush privileges;
5.7 버전 이상시
select user,host,authentication_string from mysql.user order by user;
create user 'id'@'a.b.c.d59' identified by 'passwd';
grant all privileges on *.* to 'id'@'a.b.c.d' with grant option;
flush privileges;
728x90
반응형
'Database > MySQL' 카테고리의 다른 글
MySQL error 1364 Field doesn't have a default values (0) | 2019.10.22 |
---|---|
MySQL Dump시 테이블 Lock 에러 (0) | 2019.10.22 |
MySQL 5.7 설정 튜닝 (0) | 2019.10.22 |
Indexing for High Performance (0) | 2019.10.22 |
데이터 베이스 설계 프로세스 (0) | 2019.10.22 |