web-dev-qa-db-ja.com

Kubuntu 14.04のakonadi-backend-mysqlに対してmysql 5.6を安全にインストールする方法は?

これは、 満たされていない依存関係のためにkubuntu-desktopのインストールに失敗した の結果です。 mysql 5.6のインストール後にkubuntuデスクトップを失ったと思います。 mysql 5.5に依存する kubuntu-desktop および akonadi-backend-mysql をインストールして、デスクトップを復元しました。

デスクトップを戻すと、以前にインストールされていたMySQL 5.6がなくなり、これら2つのファイルは/var/run/mysqld/ディレクトリに見つかりません。

/var/run/mysqld/mysqld.pid
/var/run/mysqld/mysqld.sock

まだ構成ファイルがあります

/etc/mysql/my.conf
/etc/mysql/conf.d/my5.6.conf

およびデータディレクトリ内のデータベース

/var/lib/mysql/

MySQL 5.6をインストールする必要がありますが、懸念はakonadi-backend-mysqlが5.6で動作しない可能性があることです。 その種のバグが報告された が見つかりました。ここに私の詳細のいくつかがあります:

Sudo apt-cache depends akonadi-backend-mysql
[Sudo] password for sithu: 
akonadi-backend-mysql
 |Depends: mysql-server-core-5.5
  Depends: mariadb-server-core-5.5
 |Depends: mysql-client-core-5.5
  Depends: mariadb-client-core-5.5
  Depends: libqt4-sql-mysql
  Recommends: akonadi-server
  Breaks: akonadi-server
  Replaces: akonadi-server


sithu@sithu-kubuntu:~$ Sudo apt-cache policy akonadi-backend-mysql
akonadi-backend-mysql:
  Installed: 1.12.1-0ubuntu1.2
  Candidate: 1.12.1-0ubuntu1.2
  Version table:
 *** 1.12.1-0ubuntu1.2 0
        500 http://security.ubuntu.com/ubuntu/ trusty-security/universe i386 Packages
        100 /var/lib/dpkg/status
     1.12.1-0ubuntu1 0
        500 http://mm.archive.ubuntu.com/ubuntu/ trusty/universe i386 Packages


sithu@sithu-kubuntu:~$ Sudo apt-get install mysql-server-5.6
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-5.6 : Depends: mysql-client-5.6 (>= 5.6.33-0ubuntu0.14.04.1) but it is not going to be installed
                    Depends: mysql-server-core-5.6 (= 5.6.33-0ubuntu0.14.04.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.


sithu@sithu-kubuntu:~$ Sudo apt-get install mysql-client-5.6 mysql-client-core-5.6
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-client-core-5.6 : Breaks: mysql-client-core-5.5 but 5.5.53-0ubuntu0.14.04.1 is to be installed
E: Unable to correct problems, you have held broken packages.

この結果はunmet dependencies: mysql-client-core-5.6 : Breaks: mysql-client-core-5.5 but 5.5.53-0ubuntu0.14.04.1 is to be installedです。

だから、私の質問は

  1. akonadi-backend-mysqlに対してMySQL 5.6をインストールしても安全ですか?
  2. 再びデスクトップを壊さずにインストールする方法は?

私のディストリビューションはKubuntu 14.04 LTSです。

sithu@sithu-kubuntu:~$ lsb_release -a
No LSB modules are available.                                                                                         
Distributor ID: Ubuntu                                                                                                
Description:    Ubuntu 14.04.1 LTS                                                                                    
Release:        14.04                                                                                                 
Codename:       trusty
1
Sithu

MySQL 5.6 5.7の機能を使用して MariaDB 10.1をインストールしましたが、すべて問題ありません。

Sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
Sudo add-apt-repository 'deb [Arch=AMD64,i386,ppc64el] http://ftp.kaist.ac.kr/mariadb/repo/10.1/ubuntu trusty main'
Sudo apt-get update
Sudo apt-get install mariadb-server
0
Sithu