HyeongSeokLee / first

1 stars 1 forks source link

MariaDB 설치 #15

Open subutuo opened 7 years ago

subutuo commented 7 years ago

https://downloads.mariadb.org/ 최신버전 .msi받기

설치시 mysql과 같은 포트를 쓰므로 3307로 변경

command prompt에서 mysql –u root –p 비밀번호:설치할때의 비밀번호

프로젝트 디비생성 create database daview; 유저생성 create user 'daview' identified by '1234'; grant all privileges on daview.* to 'daview'; alter database daview default character set utf8;