MariaDB 사용자 접근 권한 설정Database2022. 12. 27. 14:08
Table of Contents
# 사용자 권한 설정
mysql> grant all privileges on dbname.table to userid@host identified by 'password';
## ## 모든 db 및 테이블에 접근권한 설정
mysql> grant all privileges on *.* to userid@host identified by 'password';
## 모든 db 및 테이블에 권한을 주고 로컬 및 리모트에서도 접속가능하도록 설정
mysql> grant all privileges on *.* to userid@'%' identified by 'password';
## 설정한 권한 적용
mysql> flush privileges;
## 권한 삭제
mysql> revoke all on dbname.table from userid@host
## 권한 조회
mysql> show grants for userid@host
반응형
'Database' 카테고리의 다른 글
MySQL 8.0 사용자 계정 생성 및 권한 설정 (0) | 2023.03.02 |
---|---|
MongoDB 데이터베이스 사용자 추가 및 권한 설정 (0) | 2022.12.27 |
MongoDB 커넥션 상태 정보 확인 (0) | 2022.02.18 |
Mongodb Replication 구성 시 Reconfig attempted to install a config that would change the implicit default write concern.. 장애 해결 방법 (0) | 2022.02.15 |
Mac OSX 환경에서 Monstache와 MongoDB 연동하기 (0) | 2022.02.04 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!