Durante a instalação do ftp vsftpd, o erro tomcat7 está chegando

0
root@Nanobi-05-PC:/home/dev# sudo apt-get install -f vsftpd
Reading package lists... Done
Building dependency tree       
Reading state information... Done
vsftpd is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 56 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] Y
Setting up tomcat7 (7.0.52-1ubuntu0.3) ...
/var/lib/dpkg/info/tomcat7.config: 11: /etc/default/tomcat7: is: not found
dpkg: error processing package tomcat7 (--configure):
 subprocess installed post-installation script returned error exit status 127
Errors were encountered while processing:
 tomcat7
E: Sub-process /usr/bin/dpkg returned an error code (1)

como resolver isso

    
por Prasad V S Talakadu 24.08.2015 / 09:18

1 resposta

0

Parece que sua instalação do tomcat7 está quebrada. Tente desinstalar o tomcat:

    sudo apt-get purge tomcat7

e, em seguida, instale o tomcat7 novamente (se necessário)

    sudo apt-get install tomcat7

Se tudo estiver ok, provavelmente você será capaz de instalar o vsftpd.

ATUALIZAÇÃO: Outras sugestões:

  1. O pacote deb do Tomcat7 está quebrado. Tente encontrar e excluir um arquivo de pacote deb do tomcat7 do cache do apt-get. Está localizado em / var / cache / apt / archives. Em seguida, execute os comandos "purge" e "install" como descrito anteriormente. Em "sudo apt-get install tomcat7" - o apt deve baixar um novo.
  2. A instalação do Tomcat7 está quebrada. Se o apt-get se recusar totalmente a funcionar, você pode forçar a reinstalação do tomcat7 manualmente. Tente isto (mas você deve especificar o nome do pacote correto do seu cache do apt):

    sudo dpkg -i --force-overwrite /var/cache/apt/archives/tomcat7_7.0.52-1ubuntu0.3_all.deb
    

se não houver nenhum pacote tomcat7 em / var / cache / apt / archives - então você deve executar isto:

    sudo apt-get install tomcat7

e tente reinstalar novamente.

    
por itfdev 24.08.2015 / 10:39