Askubuntu.comにサインアップすることにしました。専門家からのアドバイスが本当に必要だからです。ポータブル開発環境を持ちたいので、mkbsbでUbuntu 16.10の永続的なUSBライブインストールを作成しました。すべてがうまくいきました。私は今、そのライブから書いています。
さて、質問です。Apache2をインストールできましたが、Webで何時間も検索した後、このサイトでもMySQLサーバーを適切にインストールできません。インストールを何度も再実行した後、このエラーが引き続き発生します。
Setting up mysql-server-5.7 (5.7.17-0ubuntu0.16.10.1) ...
ERROR: Unable to start MySQL server:
mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Please take a look at https://wiki.debian.org/Teams/MySQL/FAQ for tips on fixing common upgrade issues.
Once the problem is resolved, run apt-get --fix-broken install to retry.
dpkg: error processing package mysql-server-5.7 (--configure):
subprocess installed post-installation script returned error exit status 127
dpkg: dependency problems prevent configuration of mysql-server:
mysql-server depends on mysql-server-5.7; however:
Package mysql-server-5.7 is not configured yet.
dpkg: error processing package mysql-server (--configure):
dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup error from a previous failure.
Errors were encountered while processing:
mysql-server-5.7
mysql-server
E: Sub-process /usr/bin/dpkg returned an error code (1)
そして私が走ったら
Sudo mysqld --initialize
ターミナルはまだ報告します
mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
そこで、この「libaio.so.1」も検索したいと考え、「libaio1」と「libaio-dev」(同じように見える)ライブラリをインストールしました。ただし、これらのライブラリが正しくインストールされていても、結果は変わりませんでした。
これは、私がLiveUSBにいるという事実に起因していますか?
あなたが私を助けてくれることを本当に願っています。この質問の間違いをおaびします。ありがとうございました。
さらに何時間もの研究を重ねた結果、問題はLiveUSBやライブラリ自体ではないことがわかりました。問題はAppArmorで、MySQLがそのライブラリを使用することをブロックしていました。だから私はそれを無効にしました:
Sudo /etc/init.d/apparmor stop
Sudo /etc/init.d/apparmor teardown
Sudo update-rc.d -f apparmor remove
そして、それほど正統ではない方法で、私はAppArmorを完全に削除して、将来の問題を防ぎます:
Sudo apt-get purge apparmor
次に、MySQL Serverを完全にアンインストールして再インストールしました。できます!