반응형
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 | 31 |
Tags
- RSA
- 체리새우
- rust 소개
- 가재
- 주말농장
- 무화과
- 쌈채소
- for
- PKI
- rust 강좌
- 물생활
- 애플 달팽이
- 조건문
- rust
- Config server
- 기본문법
- 치비
- golang 강좌
- 구피
- 분산 신원
- 카디날
- did
- MSA
- 텐더민트
- MSSQL
- Python 강좌
- 분산 식별자
- Tendermint
- 반복문
- Feign
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