Database
MariaDB 사용자 접근 권한 설정
kogun82
2018. 7. 31. 16:50
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.%';
반응형