기본 설정 확인


show variables like 'c%';




MariaDB 설정 변경


vi /etc/mysql/my.cnf


[client]

default-character-set=utf8mb4


[mysql]

default-character-set=utf8mb4


[mysqld]

collation-server = utf8mb4_unicode_ci

#init-connect='SET NAMES utf8mb4'

character-set-server = utf8mb4


[mysqldump]

default-character-set=utf8mb4



변경된 설정 확인


show variables like 'c%';



Posted by theqoo
,

Ubuntu 16.04.6 LTS


MariaDB 10.4 [Stable]


sudo -s

apt-get install software-properties-common

apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8

add-apt-repository 'deb [arch=amd64,arm64,i386,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.4/ubuntu xenial main'


sudo apt update

sudo apt install mariadb-server


https://downloads.mariadb.org/mariadb/repositories/#mirror=digitalocean-nyc


'Study > Ubuntu' 카테고리의 다른 글

AWS CLI 설치 및 삭제  (0) 2019.09.01
Ubuntu node.js v12.x 설치  (0) 2019.06.03
Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu node.js v10.x 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
Posted by theqoo
,

사전에 python, unzip 이 설치되어있어야 합니다.



AWS CLI를 ~/.local/lib/aws 에 설치하고 ~/bin/aws에 심볼 링크를 생성


curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"

unzip awscli-bundle.zip

./awscli-bundle/install -b ~/bin/aws



PATH 환경 변수 설정


echo $PATH | grep ~/bin

export PATH=~/bin:$PATH



AWS CLI 삭제


sudo rm -rf /usr/local/aws

sudo rm /usr/local/bin/aws


'Study > Ubuntu' 카테고리의 다른 글

Ubuntu MariaDB 설치  (0) 2020.01.07
Ubuntu node.js v12.x 설치  (0) 2019.06.03
Ubuntu MongoDB 설치  (0) 2019.06.02
Ubuntu node.js v10.x 설치  (0) 2019.06.02
Ubuntu - 디스크 정보 확인  (0) 2015.08.13
Posted by theqoo
,