티스토리 뷰
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.1/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.listfile.
#
MariaDB 10.1 repository list - created 2016-12-13 05:02 UTC#
http://downloads.mariadb.org/mariadb/repositories/ deb [arch=amd64,i386] http://ftp.kaist.ac.kr/mariadb/repo/10.1/ubuntu trusty main deb-src http://ftp.kaist.ac.kr/mariadb/repo/10.1/ubuntu trusty main
출처 :
https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=Ubuntu&distro_release=trusty--ubuntu_trusty&version=10.1
'os' 카테고리의 다른 글
mariadb 계정 생성 및 권한주기 (0) | 2016.12.13 |
---|---|
ubuntu 패키지 확인 및 삭제 (0) | 2016.12.13 |
ubuntu mariadb 설치 (0) | 2016.12.12 |
ubuntu apache tomcat 설치 (0) | 2016.12.09 |
ubuntu 언어 셋팅 ko_KR.UTF-8 (0) | 2016.12.09 |