1

之前它工作正常,当我重新启动 mysql(通过 /etc/init.d/mysql restart)时,我正在配置电子邮件服务器。我很确定我没有碰任何东西,但我记得在那之前做了一个失败的 apt-get 更新。

现在我的问题开始时突然停止并且甚至不会开始。我在谷歌上搜索,甚至彻底清除所有内容并进行新安装。但它仍然不会让我正确安装mysql。

我已经尝试过(在删除 --purge 之后):

sudo apt-get install mysql-server-5.5 mysql-client-5.5

它提示我输入根密码,但返回以下错误:

Unable to set password for the MySQL "root" user                                                      

  An error occurred while setting the password for the MySQL administrative user. This may have         
  happened because the account already has a password, or because of a communication problem with the   
  MySQL server.                                                                                         

  You should check the account's password after the package installation.                               

  Please read the /usr/share/doc/mysql-server-5.5/README.Debian file for more information. 

我也有以下日志:

Selecting previously deselected package mysql-server-5.5.
(Reading database ... 117879 files and directories currently installed.)
Unpacking mysql-server-5.5 (from .../mysql-server-5.5_5.5.32-0ubuntu0.12.04.1_amd64.deb) ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
Setting up mysql-server-5.5 (5.5.32-0ubuntu0.12.04.1) ...
130830 14:13:26 [ERROR] Can't find messagefile '/usr/share/mysql/errmsg.sys'
start: Job failed to start
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error processing mysql-server-5.5 (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 mysql-server-5.5
E: Sub-process /usr/bin/dpkg returned an error code (1)

有什么帮助吗?提前致谢。

4

2 回答 2

2

我遇到了这个问题。也许 aptitude 有一些包配置。我觉得这个干扰问题虽然,这个方法是purge command。尝试运行。

  1. 检查安装的mysql包

    dpkg --get-selections|grep mysql

  2. 消除

    apt-get remove --purge [已安装软件包]
    apt-get autoremove
    apt-get autoclean
    aptitude purge [已安装软件包]
    aptitude clean
    aptitude update
    aptitude -f install
    aptitude full-upgrade

  3. 安装

    apt-get 安装 mysql 服务器

于 2014-04-16T05:52:34.420 回答
2

这个问题与通过卸载解决的问题相同,但在此之前他尝试设置问题的密码,然后他尝试在聊天中解决它,也许当您尝试设置密码时它会解决,只需尝试

更新:在您的终端中键入以下命令,以便完全删除 mysql。

sudo apt-get remove --purge mysql-server mysql-client mysql-common
sudo apt-get autoremove
sudo apt-get autoclean

您还需要通过键入以下命令删除 /var/lib/mysql 文件夹(如果存在)

sudo rm -rf /var/lib/mysql

然后按照ubuntu官方文档进行安装。并且不要忘记在安装过程中设置你的mysql密码。

另请参阅此问题,它类似于您在安装过程中遇到的错误。

于 2013-09-02T03:55:17.207 回答