Debian Wheezyにmysql-server 5.6をインストールする

Debian Wheezyにmysql-server 5.6をインストールする

私のDebianサーバーに汚れたmysqlがインストールされています。見つかったmysqlパッケージdpkg --force all --purge packet(mysql-common、mysql-server、mysql-client、phpmyadminなど)を使用してすべてを削除しました。

これで再インストールは簡単ですが、次のエラーメッセージが表示されます。

sudo apt-get install mysql-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mysql-server : Depends: mysql-server-5.6 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

私を悩ませるのは、私がパッケージを持っていないし、dpkg --get-selections | grep hold何も返さないようです。

私も適性を試してみました。

sudo aptitude install mysql-server
The following NEW packages will be installed:
  libaio1{a} libdbd-mysql-perl{ab} libdbi-perl{ab} libmysqlclient18{a} mysql-client-5.6{a} mysql-client-core-5.6{a} mysql-common{a} mysql-common-5.6{a} mysql-server 
  mysql-server-5.6{a} mysql-server-core-5.6{a} 
0 packages upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
Need to get 40,6 MB/47,5 MB of archives. After unpacking 155 MB will be used.
The following packages have unmet dependencies:
 libdbd-mysql-perl : Depends: perlapi-5.14.2 which is a virtual package.
 libdbi-perl : Depends: perlapi-5.14.2 which is a virtual package.
The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     libdbd-mysql-perl [Not Installed]                  
2)     libdbi-perl [Not Installed]                        
3)     mysql-client-5.6 [Not Installed]                   
4)     mysql-server [Not Installed]                       
5)     mysql-server-5.6 [Not Installed]  

しかし、ご覧のとおり、何もインストールされません。

今詰まっており、MySQLサーバーを操作する方法が見つかりません。どんな助けでも大変感謝します。

ベストアンサー1

最初の実行:

aptitude -f install

mysql.list次にファイルを作成します。

 nano /etc/apt/sources.list.d/mysql.list

次の行を追加します。

deb http://repo.mysql.com/apt/debian/ wheezy mysql-5.6
deb-src http://repo.mysql.com/apt/debian/ wheezy mysql-5.6

mysql 5.6をアップデートしてインストールします。

apt-get update
apt-get install mysql-server-5.6

おすすめ記事