MariaDB 사용자 접근 권한 설정Database2018. 7. 31. 16:50
Table of Contents
1. 사용자 계정 생성
1.1 내부 접속용
create user 'RemoteUser'@'localhost' identified by 'localPassword';
1.2 모든IP 외부접속용
create user 'RemoteUser'@'%' identified by 'remotePassword';
1.3 특정IP 외부접속용
create user 'RemoteUser'@'192.168.150.%' identified by 'remotePassword';
2. 계정 생성 및 권한설정
2.1 내부 접속용
grant all privileges on DB_NAME.* to RemoteUser@'localhost';
2.2 모든IP 외부접속용
grant all privileges on DB_NAME.* to RemotUser@'%';
2.3 특정IP 외부접속용
grant all privileges on DB_NAME.* to RemoteUser@'192.168.150.%';
반응형
'Database' 카테고리의 다른 글
org.apache.hadoop.hbase.TableNotFoundException: SYSTEM.CATALOG exception with phoenix 4.5.2 장애 해결 방법 (0) | 2019.09.16 |
---|---|
Apache HBase + Phoenix 접속 시 localhost:16000 접속되는 경우 해결 방법 (0) | 2019.07.05 |
MariaDB 비밀번호 변경하기 (0) | 2018.07.31 |
Apache Phoenix 쿼리 결과를 파일 저장 명령어 (0) | 2018.07.01 |
MySQL root 비밀번호 초기화 (0) | 2017.09.01 |
@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
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!