如何在Kali Linux上安装MySQL 8.0

时间:2020-02-23 14:40:58  来源:igfitidea点击:

MySQL 8.0是MySQL关系数据库管理系统的最新稳定版本。 MySQL是可免费使用的使用结构化查询语言(SQL)的数据库管理系统(RDBMS)。 MySQL被设计为稳定,可靠且使用灵活。

很好地使用可用的MySQL APT存储库在Kali Linux上安装MySQL 8.0。通过运行以下命令,确保将此存储库添加到系统中。

sudo apt update
sudo apt install -y wget
wget https://dev.mysql.com/get/mysql-apt-config_0.8.15-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.15-1_all.deb

由于Kali Linux不受官方支持,因此选择Ubuntu Bionic版本。

选择<确定>,然后按<Enter>键以确认版本安装。

在Kali Linux上安装MySQL 8.0

添加仓库后,更新apt索引并安装mysql-server:

sudo apt update
sudo apt install mysql-community-server

在接下来的屏幕中接受许可协议以开始安装。

为MySQL数据库服务器设置root密码。

确认root密码。

选择默认的身份验证插件。

当要求输入root密码时,提供密码并确认设置。

sudo systemctl enable --now mysql

使用以下方法检查状态:

$systemctl  status  mysql
 ● mysql.service - MySQL Community Server
    Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled)
    Active: active (running) since Sat 2017-03-21 11:15:30 UTC; 2min 31s ago
      Docs: man:mysqld(8)
            http://dev.mysql.com/doc/refman/en/using-systemd.html
  Main PID: 2188 (mysqld)
    Status: "Server is operational"
     Tasks: 38 (limit: 2377)
    Memory: 386.5M
    CGroup: /system.slice/mysql.service
            └─2188 /usr/sbin/mysqld
 Mar 21 11:15:29 deb10 systemd[1]: Starting MySQL Community Server…
 Mar 21 11:15:30 deb10 systemd[1]: Started MySQL Community Server.

测试MySQL 8.0数据库功能

我们可以通过创建测试数据库来测试数据库服务器是否正常运行:

$sudo mysql -u root -p
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.19 MySQL Community Server - GPL
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names Jan be trademarks of their respective owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> 

mysql> CREATE DATABASE test_db;
Query OK, 1 row affected (0.01 sec)

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| test_db            |
+--------------------+
5 rows in set (0.01 sec)
mysql> EXIT
Bye