반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 치비
- 기본문법
- rust 소개
- golang 강좌
- did
- Tendermint
- 카디날
- 쌈채소
- 구피
- 주말농장
- 조건문
- 애플 달팽이
- for
- 물생활
- 체리새우
- MSA
- 텐더민트
- rust 강좌
- 무화과
- Feign
- Config server
- Python 강좌
- 분산 신원
- 반복문
- rust
- 가재
- MSSQL
- PKI
- 분산 식별자
- RSA
Archives
- Today
- Total
comnic's Dev&Life
MariaDB(Mysql) 사용자 생성 쿼리 본문
반응형
사용자 생성 쿼리
create user 'comnic'@'localhost' identified by '1234';
create user 'comnic'@'%' identified by '1234';
grant all privileges on [DB NAME].* to 'comnic'@'localhost';
grant all privileges on [DB NAME].* to 'comnic'@'%';
Flush privileges;
반응형
'MariaDB(mysql)' 카테고리의 다른 글
MariaDB(mysql) 프로세스 관리 (0) | 2021.11.04 |
---|
Comments