Mysql 18.04 安装问题

Mysql 18.04 安装问题

我安装了 18.04 的全新副本,并安装了所需的所有软件包。安装时mysql-servermysql-client我收到以下错误

dpkg: error processing package mysql-server-5.7 (--configure):
 installed mysql-server-5.7 package post-installation script subprocess returned error exit status 1
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.7; however:
  Package mysql-server-5.7 is not configured yet.

dpkg: error processing package mysql-server (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                          Processing triggers for libc-bin (2.27-3ubuntu1) ...
Processing triggers for ureadahead (0.100.0-20) ...
Processing triggers for systemd (237-3ubuntu10) ...
Errors were encountered while processing:
 mysql-server-5.7
 mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)

我已经尝试过该purge, autoremove, autoclean, dist-upgrade程序,但它对我没有作用。

我该如何解决这个问题,请帮忙

答案1

我通过查阅 Oracles mysql 文档解决了这个问题MySQL APT 存储库这是一个巨大的帮助,按照页面上的所有说明,我能够mysql成功安装。

我做了什么:

  1. 从以下位置下载该mysql-apt-conf工具http://dev.mysql.com/downloads/repo/apt/
  2. 使用安装包sudo dpkg -i /PATH/version-specific-package-name.deb
  3. 安装时,MySQL Server & Cluster按 Enter 键并选择您想要的任何内容mysql-5.7mysql-8.0然后转到Ok并按 Enter 键
  4. 然后sudo apt-get update(此步骤仅适用于 Ubuntu 17.10 或以下版本)
  5. 跑步sudo apt install mysql-server
  6. 安装完主要软件包后,运行该程序mysql_secure_installation,这将配置mysql的密码和其他安全内容

更新

如果有人使用 运行或必须运行 mysql_secure_installation sudo,请注意,除非使用 sudo,否则您可能无法登录 mysql。发生这种情况时,登录 mysql 控制台为 mysql 创建一个新用户,然后刷新所有权限。在此处检查此问题无需 sudo 即可连接到 mysql 服务器

相关内容