エラーにより MySQL のインストールが中断されました。

エラーにより MySQL のインストールが中断されました。

Raspbian JessieにMySQLをインストールしようとしています。同じ設定を使用する他のコンピュータではスムーズに実行されますが、2台目のコンピュータでは動作しません。

パッケージの構成中にパスワードの入力を求められ、しばらく待ってから次のメッセージが表示されます。

┌─────────────────────────────────────┤ 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>                                                     │    
│                                                                                                           │    
└───────────────────────────────────────────────────────────────────────────────────────────────────────────┘    

より詳細に調査した結果、このエラーはMySQLを起動できないために発生することがわかりました。確認してみると、/var/log/mysql/error.log次の項目が含まれています。

161217 23:33:16 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
161217 23:33:16 [Warning] Using unique option prefix key_buffer instead of key_buffer_size is deprecated and will be removed in a future release. Please use the full name instead.
161217 23:33:17 [Note] /usr/sbin/mysqld (mysqld 5.5.53-0+deb8u1) starting as process 16476 ...
161217 23:33:17 [Warning] Using unique option prefix myisam-recover instead of myisam-recover-options is deprecated and will be removed in a future release. Please use the full name instead.
161217 23:33:17 [Note] Plugin 'FEDERATED' is disabled.
161217 23:33:17 InnoDB: The InnoDB memory heap is disabled
161217 23:33:17 InnoDB: Mutexes and rw_locks use GCC atomic builtins
161217 23:33:17 InnoDB: Compressed tables use zlib 1.2.8
161217 23:33:17 InnoDB: Using Linux native AIO
161217 23:33:17 InnoDB: Initializing buffer pool, size = 128.0M
161217 23:33:17 InnoDB: Completed initialization of buffer pool
InnoDB: Error: auto-extending data file ./ibdata1 is of a different size
InnoDB: 0 pages (rounded down to MB) than specified in the .cnf file:
InnoDB: initial 640 pages, max 0 (relevant if non-zero) pages!
161217 23:33:17 InnoDB: Could not open or create data files.
161217 23:33:17 InnoDB: If you tried to add new data files, and it failed here,
161217 23:33:17 InnoDB: you should now edit innodb_data_file_path in my.cnf back
161217 23:33:17 InnoDB: to what it was, and remove the new ibdata files InnoDB created
161217 23:33:17 InnoDB: in this failed attempt. InnoDB only wrote those files full of
161217 23:33:17 InnoDB: zeros, but did not yet use them in any way. But be careful: do not
161217 23:33:17 InnoDB: remove old data files which contain your precious data!
161217 23:33:17 [ERROR] Plugin 'InnoDB' init function returned error.
161217 23:33:17 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
161217 23:33:17 [ERROR] Unknown/unsupported storage engine: InnoDB
161217 23:33:17 [ERROR] Aborting

161217 23:33:17 [Note] /usr/sbin/mysqld: Shutdown complete

161217 23:33:18 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended

これはアップグレードではなく、新しくインストールしたものです(MySQLを数回インストールし、試行の間に削除しようとしたことをmysql-server-5.5除いて)。

しかし、最初の試みでストレージが不足していることに言及したいと思います(ルートパーティションは2 GB未満でした)。私は2GB SDカードを16GBカードに交換し、dd既存のカードの内容を新しいカードにコピーしてパーティションを拡張してこの問題を解決しようとしました。私はまだそれを動作させることはできませんが、最初のシステム(最初から4GBのカードがあった)はうまくいきました。ここで問題は何であり、どのように解決できますか?

ベストアンサー1

明らかに、問題は最初の試みで記憶領域が不足しているために発生しました。 MySQLはデータファイルを生成しようとしましたが、スペース不足のために失敗し、破損したデータファイルとそれを指す設定ファイルが残りました。

IIRCの最初の試みはsudo apt-get removeMySQLでしたが、再インストールしましたが、間違ったデータファイルと構成が残っていたので、次のインストールでもそれを見つけて同じ方法で失敗しました。

明らかに、後続の措置においても、sudo apt-get purge mysql-server-5.5これらの項目は除去されなかった。次のコマンドの順序がついに私にとって効果的でした。

sudo apt-get purge mysql-server-5.5
sudo rm -R /etc/mysql
sudo rm -R /var/lib/mysql
sudo apt-get install mysql-server

すると、MySQLが表示され、MySQLコンソールにログインできました。

重要:これにより、システム内のすべてのMySQLデータが永久に削除されます。新規インストールまたは結果を理解している場合にのみ、この作業を実行してください。

おすすめ記事