Tech/Linux
우분투 - 마리아디비 MariaDB 설치
멋지다마라송
2018. 7. 3. 22:38
728x90
설치하고자 하는 OS 와 마리아 디비 버전을 선택하면 아래에 설치 방법이 나옵니다.
보통 저 5줄만 입력하면 설치가 끝납니다 ^_^
마리아 디비 다운로드 URL : 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] https://ftp.harukasan.org/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
반응형