2

私はデータベースと Web サーバーを別々に管理しているので、MySQL を使わずに Forge の管理する Web サーバーを使用したいと考えていました。

willを実行しようとするsudo apt-get --purge remove mysql-client mysql-server mysql-commonと、次の出力が得られます。

Reading package lists... Done Building dependency tree
Reading state information... Done Package 'mysql-server' is not installed, so not removed The following packages were automatically installed and are no longer required: ghostscript gsfonts imagemagick-common libaio1 libavahi-client3 libavahi-common-data libavahi-common3 libboost-context1.54.0 libboost-filesystem1.54.0 libboost-program-options1.54.0 libboost-regex1.54.0 libboost-system1.54.0 libboost-thread1.54.0 libcups2 libcupsfilters1 libcupsimage2 libdbi-perl libfftw3-double3 libgflags2 libgoogle-glog0 libgs9 libgs9-common libijs-0.35 libjasper1 libjbig2dec0 libjemalloc1 liblcms2-2 liblqr-1-0 libmagickcore5 libmagickwand5 libmemcached10 libpaper-utils libpaper1 libtbb2 libterm-readkey-perl libunwind8 linux-headers-3.13.0-52 linux-headers-3.13.0-52-generic linux-image-3.13.0-52-generic linux-image-extra-3.13.0-52-generic mysql-client-core-5.6 mysql-server-core-5.6 poppler-data Use 'apt-get autoremove' to remove them. The following packages will be REMOVED: hhvm libdbd-mysql-perl libmysqlclient18 mysql-client-5.6 mysql-common mysql-common-5.6 mysql-server-5.6 0 upgraded, 0 newly installed, 7 to remove and 4 not upgraded. After this operation, 113 MB disk space will be freed. Do you want to continue? [Y/n] n Abort.

ご覧のとおり、mysql の削除を依頼しましたが、hhvm保持したいものも削除されます。これを達成する方法はありますか?

4

1 に答える 1

0

HHVM の mysql クライアントおよびその他の mysql 機能 (ほぼ確実に必要) は、削除しようとしている mysql クライアント ライブラリに依存しています。sudo apt-get remove mysql-serverHHVM が必要とするクライアント ライブラリをそのまま残しながら、動作して mysql サーバーを削除する必要があります。

于 2015-08-01T03:46:44.443 に答える