티스토리 뷰
CentOS에서 마라이 DB를 설치하고, 한글 설정을 하는 방법은 다음과 같습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################### | |
# 마리아디비 설치 | |
########################### | |
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 |
사용자, 데이터베이스를 생성하고 사용자에게 데이터베이스의 접근권한을 주는 방법은 다음과 같습니다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 사용자 생성 | |
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
링크
TAG
- 오류
- HDFS
- Hadoop
- 다이나믹
- 하이브
- nodejs
- S3
- 파이썬
- airflow
- error
- 알고리즘
- SQL
- hbase
- build
- 정올
- mysql
- AWS
- SPARK
- emr
- bash
- HIVE
- java
- Linux
- oozie
- Tez
- yarn
- ubuntu
- 백준
- 하둡
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함