大家好,我在使用mac安装的过程中出现了一个问题,参考如下的官网步骤
Here are the commands to run to install MariaDB on your Ubuntu system: sudo apt-get install software-properties-commonsudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirrors.neusoft.edu.cn/mariadb/repo/10.0/ubuntu xenial main'
Once the key is imported and the repository added you can install MariaDB with: sudo apt updatesudo apt 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.0 repository list - created 2016-08-17 13:43 UTC# http://downloads.mariadb.org/mariadb/repositories/deb [arch=amd64,i386] http://mirrors.neusoft.edu.cn/mariadb/repo/10.0/ubuntu xenial maindeb-src http://mirrors.neusoft.edu.cn/mariadb/repo/10.0/ubuntu xenial main
|