자주사용하는 MariaDB 명령어 1
페이지 정보
본문
1. 현재 데이터베이스 목록보기
> show databases;
2. 사용할 데이터베이스 선택하기
> use test; (데이터베이스이름)
3. 테이블 목록보기
> show tables;
4. 현재 등록된 사용자 확인하기
> select user,host from mysql.user;
5. user에게 권한주기
> grant all privileges on *.* to 'root'@'localhost' identified by 'password';
Query OK, 0 rows affected (0.03 sec)
6. refrash
> flush privileges;
- 이전글MariaDB LOG 종류 21.02.19
- 다음글MariaDB Replication 설정 21.02.04
댓글목록
등록된 댓글이 없습니다.