web-dev-qa-db-ja.com

12.04へのアップグレード後の破損したmysql-serverパッケージの修正

12.04にアップグレードした後、mysqlサーバーは起動できませんでした。

いろいろ試してみましたが、運はありませんでした。

今、私はそれをインストールしようとすると、私は得る:

$  Sudo apt-get install mysql-server-5.5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  tinyca
The following NEW packages will be installed:
  mysql-server-5.5
0 upgraded, 1 newly installed, 0 to remove and 39 not upgraded.
Need to get 0 B/8,708 kB of archives.
After this operation, 31.3 MB of additional disk space will be used.
Preconfiguring packages ...
Selecting previously unselected package mysql-server-5.5.
(Reading database ... 243325 files and directories currently installed.)
Unpacking mysql-server-5.5 (from .../mysql-server-5.5_5.5.22-0ubuntu1_i386.deb) ...
Processing triggers for man-db ...
Processing triggers for ureadahead ...
ureadahead will be reprofiled on next reboot
Setting up mysql-server-5.5 (5.5.22-0ubuntu1) ...
120509 20:32:08 [Note] Plugin 'FEDERATED' is disabled.
120509 20:32:08 InnoDB: The InnoDB memory heap is disabled
120509 20:32:08 InnoDB: Mutexes and rw_locks use GCC atomic builtins
120509 20:32:08 InnoDB: Compressed tables use zlib 1.2.3.4
120509 20:32:08 InnoDB: Initializing buffer pool, size = 128.0M
120509 20:32:08 InnoDB: Completed initialization of buffer pool
InnoDB: Error: log file ./ib_logfile0 is of different size 0 67108864 bytes
InnoDB: than specified in the .cnf file 0 5242880 bytes!
120509 20:32:09 [ERROR] Plugin 'InnoDB' init function returned error.
120509 20:32:09 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
120509 20:32:09 [ERROR] Unknown/unsupported storage engine: InnoDB
120509 20:32:09 [ERROR] Aborting

120509 20:32:09 [Note] /usr/sbin/mysqld: Shutdown complete

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)

誰かがこれを修正する方法を提案できますか、システム全体を再インストールする必要がありますか?

前もって感謝します。

3
umpirsky

システム全体を再インストールする必要はありません。いつでもできることなら

Sudo apt-get remove --purge mysql-server
Sudo apt-get install mysql-server-5.5

Mysqlをインストールしてトラブルに遭遇したときに起こったこと:

  • 欠落しているか、破損している/etc/my.cnfがある可能性があります(.cnfの問題に関するメッセージを参照してください)。もしそうなら...

    Sudo mv /etc/mysql/my.cnf  /etc/mysql/my.cnf.old 
    Sudo cp /etc/mysql/my.cnf.dpkg-old /etc/mysql/my.cnf
    /etc/init.d/mysql start
    

    もちろん、my.cnf.dpkg.distがある場合は最初のチェックを行います

3
Rinzwind

その答え非常に危険ですmysqlデータベースを持っている人にはそれらはすべて削除されます。そして、そのような手順を実行する必要はありません。単に行う:

Sudo touch /etc/apparmor.d/local/usr.sbin.mysqld
service mysqld start

また、mysqlは通常の状態に戻り、mysqlが実行され、データベースは消去されずに終了します。

5
Ignacio J.