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;

반응형