Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
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
Archives
Today
Total
관리 메뉴

내블로그

계정생성 본문

DataBase/MySQL&MariaDB

계정생성

잡동사니보관 2014. 7. 24. 09:09

# 계정생성

grant all privileges on *.* to 'db_user_id'@'%' identified by 'db_user_pwd' with grant option;


# 변경사항 저장

flush privileges;

'DataBase > MySQL&MariaDB' 카테고리의 다른 글

테이블 파티셔닝  (0) 2016.11.28
Dynamic Columns(JSON)  (0) 2016.11.18
CentOS 6 + MariaDB 10 설치  (0) 2016.10.18
CentOS 6.6 + mysql 5.5  (0) 2015.03.30
DB 백업 및 복구 명령어  (0) 2014.07.23