Ubuntu中卸載Postgresql出錯的解決方案,ubuntupostgresql
前言
最近在卸載PostgreSQL資料庫的出錯了,無奈只能一步步的進行排查分析解決,下面將解決的過程分享出來,給同樣遇到這個問題的朋友們參考學習,下面話不多說了,來一起看看詳細的介紹吧。
出錯輸出:
Removing postgresql-9.1 (9.1.18-0ubuntu0.12.04) .../var/lib/dpkg/info/postgresql-9.1.prerm: 9: .: Can't open /usr/share/postgresql-common/maintscripts-functionsdpkg: error processing package postgresql-9.1 (--remove): 子進程 已安裝 pre-removal 指令碼 返回了錯誤號碼 2dpkg: postgresql-client-9.1: dependency problems, but removing anyway as you requested: postgresql-9.1 依賴於 postgresql-client-9.1.Removing postgresql-client-9.1 (9.1.18-0ubuntu0.12.04) .../var/lib/dpkg/info/postgresql-client-9.1.prerm: 10: .: Can't open /usr/share/postgresql-common/maintscripts-functionsdpkg: error processing package postgresql-client-9.1 (--remove): 子進程 已安裝 pre-removal 指令碼 返回了錯誤號碼 2/var/lib/dpkg/info/postgresql-client-9.1.postinst: 7: .: Can't open /usr/share/postgresql-common/maintscripts-functionsdpkg:清理時出錯: 子進程 已安裝 post-installation 指令碼 返回了錯誤號碼 2在處理時有錯誤發生: postgresql-9.1 postgresql-client-9.1E: Sub-process /usr/bin/dpkg returned an error code (1)
解決過程
使用下面的命令:
sudo rm -r /var/lib/dpkg/info/postgresq*
然後是
sudo apt-get autoremove postgresql*
最後可以看到:
dpkg:警告:files list file for package 'postgresql-9.1' missing; assuming package has no files currently installeddpkg:警告:files list file for package 'postgresql-client-9.1' missing; assuming package has no files currently installed(正在讀取資料庫 ... 系統當前共安裝有 146453 個檔案和目錄。)Removing postgresql-9.1 (9.1.18-0ubuntu0.12.04) ...Removing postgresql-client-9.1 (9.1.18-0ubuntu0.12.04) ...
其實感覺是第一個命令刪除了dpkg關於postgresql的中繼資料資訊,然後使用autoremove命令的時候,dpkg以為postgresql沒有安裝,然後提示卸載成功了。
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的協助,如果有疑問大家可以留言交流,謝謝大家對幫客之家的支援。