우분투 설치 확인
sudo apt-cache policy mariadb-server
자신에게 맞는 주소 찾기
https://downloads.mariadb.org/mariadb/repositories
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
'개발 > 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 |