계정 생성 및 권한 부여 > MYSQL

본문 바로가기

사이트 내 전체검색

뒤로가기 MYSQL

계정 생성 및 권한 부여

페이지 정보

작성자 관리자 작성일 24-11-11 14:50 조회 7 댓글 0

본문

// 계정 생성

MariaDB [(none)]> create user 'web'@'%' identified by '1111';

MariaDB [(none)]> create user 'web'@'localhost' identified by '1111';



// 사용자 권한주기

MariaDB [(none)]> grant all privileges on web.* to 'web'@'%' identified by '1111';

MariaDB [(none)]> grant all privileges on web.* to 'web'@'localhost' identified by '1111';



// 변경사항 반영(새로고침)

MariaDB [(none)]> flush privileges;

 


// 생성된 계정 확인

MariaDB [(none)]> use mysql;

Database changed


d1865d6bef685f102a55076088463e38_1731304529_7131.png
 


// 계정에 부여된 권한 확인

MariaDB [mysql]> show grants for 'web'@'%';

MariaDB [mysql]> show grants for 'web'@'localhost';




// 계정 삭제

MariaDB [mysql]> drop user 'web'@'%';

MariaDB [mysql]> drop user 'web'@'localhost';


d1865d6bef685f102a55076088463e38_1731304937_3907.png
 


추천0 비추천 0

댓글목록 0

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기