우분투 16에 mysql-server / client를 설치할 수 없습니다


12

혼자서 해결할 수없는 mysql 설치에 문제가 있습니다. 먼저이 명령으로 오래된 파일을 제거하고 제거하려고했습니다.

sudo apt-get remove --purge mysql

또한 시도

sudo apt-get remove --purge mysql*

sudo apt-get remove --purge mariadb*

세 명령 모두 동일한 출력을 반환합니다 ...

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).

답변:


28

위의 문제를 해결하기 위해 다음 명령을 실행합니다.

  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

왜 그런지 모르겠습니다. 방금 만들 때까지 한 시간 동안이 명령으로 시도했습니다.

export TERM=xterm

그런 다음 apt install과 함께 작동했습니다.

편집 : 실제로 지금 나는 이유를 알고있다. 설치하는 동안 "패키지 관리자 버전 설치"와 유사한 시각적 인터페이스를 표시하려고 할 수 있으며 일부 Ubuntu 서버의 기본 TERM이이를 제공 할 수 없으므로 설치시 오류가 발생합니다. Xterm 사용은 그 문제를 해결합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.