계정 생성 및 권한 부여
페이지 정보
본문
// 계정 생성
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';
- 다음글localhost 대신 ip 접속 방법 24.03.18
댓글목록
등록된 댓글이 없습니다.