本文向你展示如何在Debian 9 Stretch和Debian 8 Jessie系统中安装MariaDB 10.4数据库。所需的步骤为:安装依赖包、添加MariaDB 10.4存储库并导入GPG密钥、安装MariaDB数据库、建议安装桌面数据库管理工具。
在Debian 9/Debian 8中安装MariaDB 10.4的具体步骤 在Debian 9/Debian 8系统安装MariaDB 10.4之前,需要添加包含MariaDB二进制包的官方MariaDB上游存储库。 第一步、安装依赖包 sudo apt -y install software-properties-common dirmngr 第二步、添加MariaDB 10.4存储库并导入GPG密钥 1、对于Debian 9系统: sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirror.zol.co.zw/mariadb/repo/10.4/debian stretch main' 2、对于Debian 8系统: sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db sudo add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirror.zol.co.zw/mariadb/repo/10.4/debian jessie main' 第三步、安装MariaDB数据库 1、导入密钥并添加存储库后,可以使用以下命令安装MariaDB: sudo apt update && sudo apt install mariadb-server mariadb-client 2、当提示设置root密码时,请输入密码:
3、确认要设置的root密码:
4、完成后,它将完成安装并启动mysql服务,可以使用以下方式检查: $ sudo systemctl status mysql mariadb.service - MariaDB 10.3.8 database server Loaded: loaded (/lib/systemd/system/mariadb.service; enabled; vendor preset: enabled) Drop-In: /etc/systemd/system/mariadb.service.d └─migrated-from-my.cnf-settings.conf Active: active (running) since Fri 2018-12-21 19:38:08 UTC; 34min ago Docs: man:mysqld(8) https://mariadb.com/kb/en/library/systemd/ Main PID: 5468 (mysqld) Status: "Taking your SQL requests now..." CGroup: /system.slice/mariadb.service └─5468 /usr/sbin/mysqld 5、也可以登录以检查数据库版本: $ mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 10 Server version: 10.4.1-MariaDB-1:10.4.1+maria~stretch-log mariadb.org binary distribution Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> SELECT VERSION(); VERSION() 10.4.1-MariaDB-1:10.4.1+maria~stretch-log 1 row in set (0.001 sec) MariaDB [(none)]> QUIT Bye 第四步、建议安装桌面数据库管理工具 如果使用MySQL命令行觉得很麻烦,那么建议安装数据库工具来帮助你。参考在Ubuntu 18.04系统上安装和配置DBeaver的步骤,该方法适用在Ubuntu 18.04/Ubuntu 16.04/Debian 9系统中。
相关主题 |