Skip to content

DB 권한 설정

Redddy edited this page Aug 22, 2024 · 1 revision

image

방법

  1. root 권한으로 접근
  2. 유저 생성
    1. create user {사용자 ID}@localhost identified by '{비밀번호}';
  3. 유저 권한 부여
    1. grant select, insert, update, delete on {DB table}.* to {사용자 ID}@localhost;
  4. 권한 확인
    1. show grants for {사용자 ID}@localhost;
Clone this wiki locally