Ubuntu 14.04 e usuário específico do Apache 2.4.7 por vhost

1

Estou usando o Ubuntu 12.04 e o Apache 2.2 há algum tempo usando o apache2-mpm-itk para poder especificar um usuário por host virtual.

Eu atualizei meu VPS para o Ubuntu 14.04 que vem com o Apache 2.4.7. Acabei de tentar instalar o apache2-mpm-itk, mas estou recebendo alguns erros de dependência.

# apt-get install apache2-mpm-itk
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  libapache2-mpm-itk
The following NEW packages will be installed:
  apache2-mpm-itk libapache2-mpm-itk
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 11.2 kB of archives.
After this operation, 94.2 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://mirrors.digitalocean.com/ubuntu/ trusty/universe libapache2-mpm-itk
 amd64 2.4.6-01-1 [9,718 B]
Get:2 http://mirrors.digitalocean.com/ubuntu/ trusty/universe apache2-mpm-itk am
d64 2.4.7-1ubuntu4 [1,458 B]
Fetched 11.2 kB in 0s (298 kB/s)
Selecting previously unselected package libapache2-mpm-itk.
(Reading database ... 59657 files and directories currently installed.)
Preparing to unpack .../libapache2-mpm-itk_2.4.6-01-1_amd64.deb ...
Unpacking libapache2-mpm-itk (2.4.6-01-1) ...
Selecting previously unselected package apache2-mpm-itk.
Preparing to unpack .../apache2-mpm-itk_2.4.7-1ubuntu4_amd64.deb ...
Unpacking apache2-mpm-itk (2.4.7-1ubuntu4) ...
Setting up libapache2-mpm-itk (2.4.6-01-1) ...
dpkg: error processing package libapache2-mpm-itk (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of apache2-mpm-itk:
 apache2-mpm-itk depends on libapache2-mpm-itk; however:
  Package libapache2-mpm-itk is not configured yet.

dpkg: error processing package apache2-mpm-itk (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup erro
r from a previous failure.
                          Errors were encountered while processing:
 libapache2-mpm-itk
 apache2-mpm-itk
E: Sub-process /usr/bin/dpkg returned an error code (1)

Esta é uma nova instalação do Ubuntu, então não tenho certeza do que Nenhum relatório de relatório escrito porque a mensagem de erro indica que é um erro de acompanhamento de uma falha anterior significa que não instalei mais nada .

Por favor, poderia me ajudar?

Obrigado!

    
por Brigante 14.05.2014 / 12:42

1 resposta

4

Parece haver algum problema com o Ubuntu 14.04 e o Apache + mpm-itk. Experimente com

a2dismod mpm_event
apt-get -f install

E veja como sua instalação interrompida anteriormente continua de forma limpa.

    
por 14.05.2014 / 15:06