프로그래밍/DBMS

리눅스 centos7 - MariaDB(마리아디비) 11.0 버전 설치

Heidong 2023. 7. 28. 16:44
반응형

마리아 디비 11버전이 출시가 되었다.

 

개인 리눅스 서버에 마리아 디비 설치를 해야할 일이 생겨서 알아보던중

최신 버전을 설치 하고 싶은데 다른 인터넷 글들은 10 버전 설치 글 밖에 없어서 작성하게 되었다.

 

사설 정보가 하나도 없기 때문에 공식 홈페이지를 참조할 방법 밖에 없다.

 

https://mariadb.org/download/?t=repo-config&d=CentOS+7&v=11.0&r_m=blendbyte 

 

Download MariaDB Server - MariaDB.org

REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server"

mariadb.org

위 링크는 centos 7버전 마리아 11버전에 대한 설치 관련 문서이다.

 

간단하게 설치 순서만 쭈룩 나열 하자면

 

1. 

sudo yum update

 

2.

 

sudo vi /etc/yum.repos.d/MariaDB.repo

 

3.

i 눌러서 vi 편집기에 insert 시작

# MariaDB 11.0 CentOS repository list - created 2023-07-28 07:37 UTC
# https://mariadb.org/download/
[mariadb]
name = MariaDB
# rpm.mariadb.org is a dynamic mirror if your preferred mirror goes offline. See https://mariadb.org/mirrorbits/ for details.
# baseurl = https://rpm.mariadb.org/11.0/centos/$releasever/$basearch
baseurl = https://tw1.mirror.blendbyte.net/mariadb/yum/11.0/centos/$releasever/$basearch
module_hotfixes = 1
# gpgkey = https://rpm.mariadb.org/RPM-GPG-KEY-MariaDB
gpgkey = https://tw1.mirror.blendbyte.net/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck = 1

:wq로 저장후 빠져나오기

 

4.

sudo yum install MariaDB-server MariaDB-client

 

설치 완료

 

주의 사항

공식 문서에 보면 

라는 문구가 있는데 epel 레파지토리나 pv가 없을경우 설치 하란다.

혹시 설치가 안된다면 이 문제일 가능성이 매우 높다.

 

추신

마리아 디비 11버전대는 공식 지원이 1년간이라고 적혀있다.

그래서 나는 그냥 10.11버전 대로 설치 했다 (5년 지원)

반응형