uos有安装mysql成功的吗?
Tofloor
poster avatar
zgg
deepin
2020-01-12 07:09
Author
uos有安装mysql成功的吗?
Reply Favorite View the author
All Replies
avatar
deepinuser17
deepin
2020-01-12 09:28
#1
安装mysql没有问题,只要有可以使用的源库。

  1. $ dpkg -l | grep -i mariadb
  2. ii  libdbd-mysql-perl:amd64                       4.050-2                                     amd64        Perl5 database interface to the MariaDB/MySQL database
  3. ii  libmariadb3:amd64                             1:10.3.17-0+deb10u1                         amd64        MariaDB database client library
    ii  mariadb-client-10.3                           1:10.3.17-0+deb10u1                         amd64        MariaDB database client binaries
  4. ii  mariadb-client-core-10.3                      1:10.3.17-0+deb10u1                         amd64        MariaDB database core client binaries
    ii  mariadb-server-10.3                           1:10.3.17-0+deb10u1                         amd64        MariaDB database server binaries
  5. ii  mariadb-server-core-10.3                      1:10.3.17-0+deb10u1                         amd64        MariaDB database core server files
Copy the Code

  1. $ sudo mysql
  2. Welcome to the MariaDB monitor.  Commands end with ; or \g.
  3. Your MariaDB connection id is 47
  4. Server version: 10.3.17-MariaDB-0+deb10u1 Debian 10

  5. Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

  6. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

  7. MariaDB [(none)]> show databases;
  8. +--------------------+
  9. | Database           |
  10. +--------------------+
  11. | information_schema |
  12. | mysql              |
  13. | performance_schema |
  14. +--------------------+
  15. 3 rows in set (0.001 sec)

  16. MariaDB [(none)]> \quit
Copy the Code
Reply View the author
avatar
jzc
deepin
2020-01-12 18:13
#2
Debian中用的是  MariaDB
Reply View the author
avatar
zgg
deepin
2020-01-12 21:24
#3
https://bbs.deepin.org/post/187890
安装mysql没有问题,只要有可以使用的源库。

不是,我去mysql官网下载配置mysql的文件,在安装的时候报错了,然后sudo apt-get update提示依赖不足,现在已经可以用了
Reply View the author