계정 생성 및 권한 부여
페이지 정보
작성자 관리자 작성일 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
// 계정에 부여된 권한 확인
MariaDB [mysql]> show grants for 'web'@'%';
MariaDB [mysql]> show grants for 'web'@'localhost';
// 계정 삭제
MariaDB [mysql]> drop user 'web'@'%';
MariaDB [mysql]> drop user 'web'@'localhost';
추천0 비추천 0
댓글목록 0
등록된 댓글이 없습니다.