O Postgres-xc não desinstalará (Falha ao parar os coordenadores)

7

Eu estava desenvolvendo alguns trilhos e acidentalmente instalei o postres-xc em vez do pacote postgres normal. Eu fui imediatamente para remover postgres-xc, mas o apt-get não irá desinstalá-lo. Eu também tentei instalar o postgres regular, mas ele falha da mesma maneira.

sudo apt-get remove a saída postgres-xc:

  Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  comerr-dev krb5-multidev libgraphics-magick-perl libgraphicsmagick++1-dev libgraphicsmagick++3 libgraphicsmagick1-dev libgraphicsmagick3 libgssrpc4 libkadm5clnt-mit8 libkadm5srv-mit8
  libkdb5-6 libkrb5-dev libpq-dev libpq5 libssl-dev libssl-doc linux-headers-3.5.0-17
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  postgres-xc
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 17.1 MB disk space will be freed.
Do you want to continue [Y/n]? Y
(Reading database ... 217256 files and directories currently installed.)
Removing postgres-xc ...
 * Stopping Postgres-XC datanodes                                                                                                                                                  [ OK ] 
 * Stopping Postgres-XC coordinators                                                                                                                                               [fail] 
invoke-rc.d: initscript postgres-xc, action "stop" failed.
dpkg: error processing postgres-xc (--remove):
 subprocess installed pre-removal script returned error exit status 1
 * Starting Postgres-XC global transaction management daemons                                                                                                                      [ OK ] 
 * Starting Postgres-XC coordinators                                                                                                                                               [ OK ] 
 * Starting Postgres-XC datanodes                                                                                                                                                  [ OK ] 
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 postgres-xc
E: Sub-process /usr/bin/dpkg returned an error code (1)

EDITAR

Eu descobri que é pelo menos parcialmente desinstalado, já que não consigo instalar mais nada sem usar o apt-get -f install para repará-lo.

Também parece ser um problema conhecido

O Postgres-xc não desinstalará (Falha ao parar Coordenadores) link

Existe, de qualquer forma, eu posso retirá-lo manualmente da minha instalação.

EDIT 2

Corrigido. A solução é para dpkg --purge postgres-xc

    
por Marc Mailhot 30.01.2013 / 21:12

1 resposta

8

A solução que funcionou para mim foi:

  1. Modifique postgres-xc.prerm:

    sudo vim /var/lib/dpkg/info/postgres-xc.prerm

    Adicione "exit 0" após a primeira linha (# / bin / sh -e)

  2. Em seguida, remova normalmente:

    sudo apt-get remove postgres-xc

(encontrei esta solução em: link )

    
por Kevin Albrecht 28.03.2013 / 18:43