MariaDB をアンインストールできません

MariaDB をアンインストールできません

MariaDB を再インストールしようとしましたが、次の方法を使用しました:

sudo apt-get purge mysql* mariadb*

しかし、上記の試行が失敗した後にアンインストールする必要があるパッケージは だけですmariadb-server-10.0

以下を使用して消去しようとすると、

sudo apt-get purge mariadb-server-10.0

次のような出力が得られました:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
libdbi-perl libterm-readkey-perl
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  mariadb-server-10.0*
0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded.
1 not fully installed or removed.
After this operation, 74.5 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 50%
(Reading database ... 460851 files and directories currently installed.)
Removing mariadb-server-10.0 (10.0.23-0ubuntu0.15.04.1) ...
Failed to stop mysql.service: Unit mysql.service not loaded.
invoke-rc.d: initscript mysql, action "stop" failed.
dpkg: error processing package mariadb-server-10.0 (--purge):
subprocess installed pre-removal script returned error exit status 5
Failed to stop mysql.service: Unit mysql.service not loaded.
invoke-rc.d: initscript mysql, action "stop" failed.
Failed to start mysql.service: Unit mysql.service failed to load: No such file or directory.
invoke-rc.d: initscript mysql, action "start" failed.
dpkg: error while cleaning up:
subprocess installed post-installation script returned error exit status 6
Errors were encountered while processing:
mariadb-server-10.0
E: Sub-process /usr/bin/dpkg returned an error code (1)

この問題を解決するにはどうすればいいでしょうか?よろしくお願いします

答え1

MariaDBはMySQLのオープンソース版(親Oracleの面倒なことは一切ありません)です。MariaDBのインストールログからMySQLがインストールされている場所(/etc/init.dの下にある可能性があります)を見つけて停止する必要があります。

sudo /etc/init.d/mysql stop

それが完了したら、実行しようとしているのと同じアクションを実行します。

関連情報