티스토리 뷰
$ mysql -u root Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 8 Server version: 5.5.56-MariaDB MariaDB Server Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> # 데이터베이스 생성 # https://mariadb.com/kb/en/library/create-database/ # CREATE DATABASE 데이터베이스명; MariaDB [(none)]> CREATE DATABASE example; # 데이터베이스 생성 확인 MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | auth | | mysql | | performance_schema | | test | +--------------------+ # 계정 생성 # https://mariadb.com/kb/en/library/create-user/ # CREATE USER '계정명'@'호스트' IDENTIFIED BY '비밀번호'; MariaDB [(none)]> CREATE USER 'testuser'@'%' IDENTIFIED BY 'testpwd123!@#'; # 권한 부여 # https://mariadb.com/kb/en/library/grant/ # GRANT 권한 PRIVILEGES ON 데이터베이스.테이블 TO '계정명'@'호스트'; MariaDB [(none)]> GRANT ALL PRIVILEGES ON example.* TO 'testuser'@'%'; # 권한 확인 # https://mariadb.com/kb/en/library/show-grants/ # SHOW GRANTS FOR 계정명; MariaDB [(none)]> SHOW GRANTS FOR testuser;
'데이터베이스 > MySQL & MariaDB' 카테고리의 다른 글
[MySQL] VARBINARY 형식의 필드를 WHERE절에서 사용 (0) | 2021.10.08 |
---|---|
FEDERATED 엔진을 이용한 DB Link (0) | 2021.08.18 |
[MariaDB] 여러개의 sql 파일을 실행 하는 방법 (0) | 2018.11.24 |
[MariaDB] Server has gone away 오류 (0) | 2018.11.24 |
Can't open file xxxx.xxx (0) | 2009.06.02 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday