web-dev-qa-db-ja.com

MySQL「root」ユーザーのパスワードを設定できません。開始:ジョブの開始に失敗しました

     ┌───────────────────────Configuring mysql-server-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.                                                          │ 
     │                                                                            │
     │                                                                            │
     ├────────────────────────────────────────────────────────────────────────────┤ 
                                      │ < OK > │ 
     └────────────────────────────────────────────────────────────────────────────┘
start: Job failed to start 
invoke-rc.d: initscript mysql, action "start" failed. 
dpkg: error processing package mysql-server-5.5 (--configure):
 subprocess installed post-installation script returned error exit status 1 
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.5; however:
  Package mysql-server-5.5 is not configured yet.

dpkg: error processing package mysql-server (--configure):
 dependency problems - leaving unconfigured 
Processing triggers for libc-bin (2.19-0ubuntu6.6) ... 
Processing triggers for ureadahead (0.100.0-16) ... 
Errors were encountered while processing:
 mysql-server-5.5
 mysql-server 
E: Sub-process /usr/bin/dpkg returned an error code (1)

この後ps -e | grep mysqldを発行しましたが、出力がありません。

以下をすべて試しましたが、問題は残ります:

dpkg -S etc/mysql
aptitude purge mysql-server --purge-unused
Sudo apt-get remove --purge mysql-server mysql-client mysql-common
Sudo apt-get autoremove
Sudo apt-get autoclean
Sudo rm -rf /var/lib/mysql
Sudo rm -rf /etc/mysql
Sudo dpkg --configure -a
Sudo apt-get update 

私もこれを試してみました:

Sudo apt-get purge mysql-server mysql-client mysql-common mysql-client-5.5 mysql-server-5.5 
Sudo dpkg -i mysql-5.6.13-debian6.0-i686.deb 
Sudo apt-get install mysql-server

どうすればいいですか?

1
What Ever

試したすべてのコマンドを使用して、システムが実際にどのような構成であるかを確認することは困難です。最初の部分で提案された/usr/share/doc/mysql-server-5.5/README.Debianを読みましたか?

とにかく、私は試してみます:Sudo dpkg-reconfigure mysql

これにより、MySQLのルートパスワードを入力できます(linux rootuserと混同しないでください)。

成功した場合、MySQLを起動するには:Sudo service mysql start

1