mysql-apt-config 在 Ubuntu 14.04.1 上安装需要很长时间

mysql-apt-config 在 Ubuntu 14.04.1 上安装需要很长时间

我正在尝试使用 mysql-apt-config 将 mysql 从 5.6 升级到 5.7。我已经下载了 deb 并尝试安装它。但它“挂起”在

Setting up mysql-apt-config (0.3.2-1ubuntu14.04) ...

并且它在那里停留了几个小时。什么也没有发生。

这可能是问题吗?https://unix.stackexchange.com/questions/158052/how-to-configure-the-mysql-apt-repo-on-ubuntu-on-a-non-interactive-shell 我没有看到选择菜单,因为我是通过 SSH 安装的

答案1

我遇到了同样的问题,我找到了解决方案您提到的链接

export DEBIAN_FRONTEND=noninteractive 
echo mysql-apt-config mysql-apt-config/enable-repo select mysql-5.6 | sudo debconf-set-selections
dpkg --configure -a

不要忘记检查你的 MySQL 版本!

谢谢你!

相关内容