2017. 7. 13. 01:46
반응형
마리아디비 설치후 처음에 해주면 좋은 일
DB 생성
create database mydb;
계정 생성 및 권한 부여
create user 'scott'@'localhost' identified by 'tiger';
grant all privileges on mydb.* to scott@'localhost';
flush privileges;
반응형
'dev' 카테고리의 다른 글
MongoDB 시작하기 (0) | 2017.08.05 |
---|---|
[Spring] Spring에서 json 쓰려면 pom.xml에 추가해야하는 dependency (0) | 2017.07.31 |
getJSON으로 json 데이터 받아오기 (0) | 2017.07.27 |
MariaDB 여러행 동시에 insert (0) | 2017.07.13 |
[CSS] 드래그/텍스트 선택 방지 (0) | 2017.06.13 |
MariaDB Java 연결 (0) | 2017.05.31 |
[Ubuntu] Apache, MySQL, php 설치 (0) | 2017.04.17 |
[Ubuntu] 자바 설치하기 (0) | 2017.04.17 |