ubuntu 16にmysql-server / clientをインストールできません


10

私は一人で解決できないmysqlのインストールに問題があります。まず、このコマンドで古いファイルを削除してパージしようとしました

sudo apt-get remove --purge mysql

また試しました

sudo apt-get remove --purge mysql*

そして

sudo apt-get remove --purge mariadb*

3つのコマンドすべてが同じ出力を返します...

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
dbconfig-mysql : Depends: mysql-client but it is not going to be installed or
                       mariadb-client but it is not going to be installed or
                       virtual-mysql-client
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

だから私は私に示唆されたものを実行しapt-get -f install、私は持っています

$ sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following additional packages will be installed:
  mysql-server-5.7
Suggested packages:
  mailx tinyca
The following NEW packages will be installed:
  mysql-server-5.7
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 0 B/2,597 kB of archives.
After this operation, 48.3 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Preconfiguring packages ...
(Reading database ... 300885 files and directories currently installed.)
Preparing to unpack .../mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb ...
Aborting downgrade from (at least) 10.0 to 5.7.
If are sure you want to downgrade to 5.7, remove the file
/var/lib/mysql/debian-*.flag and try installing again.
dpkg: error processing archive /var/cache/apt/archives/mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb (--unpack):
 subprocess new pre-installation script returned error exit status 1
Errors were encountered while processing:
 /var/cache/apt/archives/mysql-server-5.7_5.7.16-0ubuntu0.16.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

を実行すると同じ出力が得られますapt upgrade -f。これはの出力ですsystemctl status mysql.service -l

$ systemctl status mysql.service -l
    ● mysql.service
       Loaded: not-found (Reason: No such file or directory)
       Active: failed (Result: exit-code) since Wed 2016-11-23 07:32:55 EET; 58min ago

    Nov 23 07:32:24 stan systemd[1]: Starting LSB: Start and stop the mysql database server daemon...
    Nov 23 07:32:24 stan mysql[7818]:  * Starting MariaDB database server mysqld
    Nov 23 07:32:55 stan mysql[7818]:    ...fail!
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Control process exited, code=exited status=1
    Nov 23 07:32:55 stan systemd[1]: Failed to start LSB: Start and stop the mysql database server daemon.
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Unit entered failed state.
    Nov 23 07:32:55 stan systemd[1]: mysql.service: Failed with result 'exit-code'.

私が試した別のことはmysql-server、それを削除してもう一度インストールすることでしたが、それでも同じエラーが発生します。

誰でもこの問題を解決できますか?どうすれば修正できますか?

の出力を更新 lsb_release -a

$ lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 16.04.1 LTS
  Release:  16.04
  Codename: xenial 

Update2:の出力 sudo apt install mysql-server mysql-client

$ sudo apt install mysql-server mysql-client
  Reading package lists... Done
  Building dependency tree       
  Reading state information... Done
  mysql-client is already the newest version (5.7.16-0ubuntu0.16.04.1).
  mysql-server is already the newest version (5.7.16-0ubuntu0.16.04.1).
  You might want to run 'apt-get -f install' to correct these:
  The following packages have unmet dependencies:
  mysql-server : Depends: mysql-server-5.7 but it is not going to be installed
  E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

回答:


25

上記の問題を解決するために、次のコマンドを実行します。

  1. コマンドを実行して、システムにインストールされているMySQLパッケージのリストを取得します sudo dpkg -l | grep mysql
  2. コマンドを実行して、上記のパッケージを削除します sudo apt-get --purge autoremove <packages from the step 1>
  3. 削除する /var/lib/mysql
  4. mysqlを再度インストールしてください。それはあなたの問題を解決するはずです。

Thnakが答えです。私が試したが、私は、私は同じエラーを持って削除しようとしたものは何でもパッケージそれらをパージし、自動削除第二段階にきました:You might want to run 'apt-get -f install' to correct these: The following packages have unmet dependencies: mysql-server : Depends: mysql-server-5.7 but it is not going to be installed E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
SI

コマンドの出力を提供してくださいlsb_release -a
Bidyut

質問を出力で更新しました。
SI

実行してsudo apt-get updateから実行sudo apt install mysql-server mysql-client
Bidyut

私の質問を次の出力で更新sudo apt install mysql-server mysql-client
SI

1

なぜだかわからない。作成したところまで1時間ほどこれらのコマンドを試してみた

export TERM=xterm

そして、それはちょうどapt installで動作しました。

編集:実際に今私は理由を知っています。インストール中に、「パッケージのメンテナのバージョンをインストールする」などを求めるビジュアルインターフェースを起動しようとしている可能性があり、一部のUbuntuサーバーのデフォルトのTERMはそれを提供できないため、インストールはエラーをスローします。Xtermの使用はその問題を解決します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.