为什么安装 apache2-mpm-worker 时应删除 apache2-mpm-prefork?

为什么安装 apache2-mpm-worker 时应删除 apache2-mpm-prefork?

我有一个依赖 的 packageA。packageAapache2-mpm-prefork已安装。现在我尝试安装apache2-mpm-worker,但输出为:

me@XXX:~$ sudo apt-get install apache2-mpm-worker 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
...
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  apache2-mpm-prefork packageA
The following NEW packages will be installed:
  apache2-mpm-worker

为什么?如何在不接触 packageA 的情况下安装 apache2-mpm-worker?谢谢

答案1

在 Debian 中,你只能有一个 Apache 实例,它应该使用以下之一平均每分钟单个 apache 实例不能使用多个平均每分钟的。

您可以编译其他版本并从 /opt 运行它们,但这并不是预期的结果。Debian 的理念是,如果您需要某个服务的多个实例,则应该使用多个服务器。

PS 不同之处在于每一个服务,但对于大多数人来说。

相关内容