Created
January 28, 2019 23:18
-
-
Save UbuntuEvangelist/e10dd8200a500f9966994164adc58795 to your computer and use it in GitHub Desktop.
Setting up MariaDB Ubuntu 16.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo apt-get install software-properties-common | |
| sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 | |
| sudo add-apt-repository 'deb [arch=amd64,arm64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.0/ubuntu xenial main' | |
| sudo apt update | |
| sudo apt install mariadb-server | |
| sudo /etc/init.d/mysql start | |
| sudo /etc/init.d/mysql reload | |
| sudo /etc/init.d/mysql restart | |
| mysql --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment