'dpkg --configure -a' 来更正安装 Mysql

'dpkg --configure -a' 来更正安装 Mysql

我一步一步安装 Mysql在我的 VPS 上

但我有这个错误:

root@euve838129:~# apt-get -y install mysql-server mysql-client
E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.

答案1

您是否运行了给定的命令?(dpkg --configure -a)大多数情况下,这可以解决问题。

答案2

该错误实际上是告诉包管理器 dpkg 由于某种原因被中断。

尝试通过以下命令解决此问题:

sudo dpkg --configure -a
sudo apt-get update

如果这不起作用,sudo apt-get install -f将满足未满足的依赖关系。

相关内容