본문 바로가기

SQL/MySQL

[MySQL] Linux (Ubuntu)에 Mariadb 설치 및 이관 작업하기 (1)

서버이관작업을 진행하던 도중에 정리가 필요할것 같아서

오늘은 db이관 작업전에 운영서버에 mariadb를 설치해보려고 한다.

 

개발환경

 

작성일: 2020-06-05

OS: Linux(Ubuntu 20.04_64 focal)

DB: Mariadb.server 10.4.13

 

현재 개발서버 기준으로 작성해야하기 때문에 Mariadb 공식 홈페이지에서 가이드라인에 명시된

설치방법으로 설치를 진행해 보려고 한다.

 

Mariadb 설치

공식 설치 가이드라인: https://downloads.mariadb.org/mariadb/repositories

 

MariaDB - Setting up MariaDB Repositories - MariaDB

To generate the entries select an item from each of the boxes below. Once an item is selected in each box, your customized repository configuration will appear below. 1. Choose a Distro SLES openSUSE Arch Linux Mageia Fedora CentOS RedHat Mint Ubuntu Debia

downloads.mariadb.org

해당 링크를 타고들어가면 Linux, 버전, Mariadb버전, 미러링 국가를 선택할수있는 화면이 나온다.

개발환경에 맞게 선택해보자.

이후 Mariadb 설치를 위해 open key를 추가하자.

sudo apt-get install software-properties-common
sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'
sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://ftp.osuosl.org/pub/mariadb/repo/10.4/ubuntu focal main'

위의 명령어를 실행하면 /etc/apt/sources.list에 내용이 추가되는것을 확인할 수 있다.

설정한 repository 적용을 위한 업데이트를 진행한다.

 

sudo apt update
sudo apt install mariadb-server

여기까지 진행하면 Mariadb 설치준비가 끝난것이다.

 

설치 가능한 버전 확인을 위해 다음 명령어를 실행한다.

sudo apt-cache search mariadb-server-10.4

Mariadb 설치를 진행한다.

sudo apt-get install mariadb-server-10.4

 

참조: https://freestrokes.tistory.com/90