계정 생성 및 권한 부여 > MYSQL

본문 바로가기
사이트 내 전체검색

MYSQL

계정 생성 및 권한 부여

페이지 정보

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

본문

// 계정 생성

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

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
109
어제
252
최대
10,760
전체
263,960
Copyright © dancePKT . All rights reserved.