본문 바로가기
개발/Linux

gsjava mariadb 최신 버전 설치 하기

by 철권 2019. 6. 6.
728x90

우분투 설치 확인

sudo apt-cache policy mariadb-server

자신에게 맞는 주소 찾기

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

Here are the commands to run to install MariaDB on your Ubuntu system:

sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.3/ubuntu trusty main'

Once the key is imported and the repository added you can install MariaDB with:

sudo apt-get update sudo apt-get install mariadb-server

See Installing MariaDB .deb Files for more information and for instructions on installing MariaDB Galera Cluster.

You can also create a custom MariaDB sources.list file. To do so, after importing the signing key as outlined above, copy and paste the following into a file under /etc/apt/sources.list.d/(we suggest naming the file MariaDB.list or something similar), or add it to the bottom of your /etc/apt/sources.list file.

# MariaDB 10.3 repository list - created 2019-06-06 12:56 UTC # http://downloads.mariadb.org/mariadb/repositories/ deb [arch=amd64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.3/ubuntu trusty main deb-src http://ftp.kaist.ac.kr/mariadb/repo/10.3/ubuntu trusty main

728x90
반응형

'개발 > Linux' 카테고리의 다른 글

gsjava ssh 포트 변경  (0) 2019.07.03
gsjava linux 프로세스별 메모리 사용량  (0) 2019.06.25
gsjava iptable install  (0) 2019.06.06
gajava bz2 압축 해제  (0) 2019.06.06
gsjava ubuntu 항상 최신으로 유지 방법  (0) 2019.06.05