/
MariaDB 데이타베이스와 사용자 계정 생성하기

MariaDB 데이타베이스와 사용자 계정 생성하기

Database 와 계정 생성

MariaDB 에서 utf8mb4 인코딩으로 사용자와 계정 생성

CREATE DATABASE homestead CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret';

GRANT ALL PRIVILEGES ON homestead.* TO 'homestead'@'localhost';

flush privileges;



같이 보기

Related content

MySQL 데이타베이스와 사용자 계정 생성하기
MySQL 데이타베이스와 사용자 계정 생성하기
More like this
MySQL Character Sets 과 Collations 의 의미
MySQL Character Sets 과 Collations 의 의미
More like this
MyBatis 에서 insert 시 자동 생성키 사용하기
MyBatis 에서 insert 시 자동 생성키 사용하기
More like this
command line 에서 빈 sqlite 데이터베이스 파일 만들기
command line 에서 빈 sqlite 데이터베이스 파일 만들기
More like this
docker 로 MySQL 설치하고 volume mount 하기
docker 로 MySQL 설치하고 volume mount 하기
More like this
Laravel 의 BluePrint 를 수정해서 Oracle 의 NVARCHAR 2 사용하기
Laravel 의 BluePrint 를 수정해서 Oracle 의 NVARCHAR 2 사용하기
More like this