티스토리 뷰

CentOS에서 마라이 DB를 설치하고, 한글 설정을 하는 방법은 다음과 같습니다.

 

###########################
# 마리아디비 설치
###########################
sudo yum install mariadb-server
###########################
# 마리아디비 한글 설정 추가
###########################
$ vi /etc/my.cnf
[client]
default-character-set=utf8
[mysql]
default-character-set=utf8
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd
init_connect="SET collation_connection=utf8_general_ci"
init_connect="SET NAMES utf8"
character-set-server=utf8
collation-server=utf8_general_ci
skip-character-set-client-handshake
[mysqld_safe]
log-error=/var/log/mariadb/mariadb.log
pid-file=/var/run/mariadb/mariadb.pid
#
# include all files from the config directory
#
!includedir /etc/my.cnf.d
###########################
# 실행, 정지
###########################
sudo systemctl stop mariadb
sudo systemctl start mariadb
###########################
# root 계정으로 접속.
###########################
mysql -u root
mysql -h localhost -P 3306 -u root -p

 

사용자, 데이터베이스를 생성하고 사용자에게 데이터베이스의 접근권한을 주는 방법은 다음과 같습니다.

 

# 사용자 생성
CREATE USER '사용자명'@'%' identified by '암호';
CREATE USER '사용자명'@'localhost' identified by '암호';
# DB 생성
CREATE DATABASE db01;
# DB 접근 권한 추가
grant all privileges on db01.* to '사용자명'@'%';
grant all privileges on db01.* to '사용자명'@'localhost';
# 권한 추가
flush privileges;

 

주의할 점은 한글을 설정하기전에 생성한 데이터베이스와 테이블은 기존에 생성한 언어 설정을 가져가이 때문에 새로 생성하거나, 데이터베이스, 테이블의 언어 설정을 변경해야 합니다.

반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함