Ubuntu中postgresql安装问题的示例分析
问题描述:
在Ubuntu下安装postgresql数据库,输入命令sudo apt-get install postgresql postgresql-contrib安装过程中出现如下错误:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
解决方法:
这个错误一般是由于安装过程被打断造成的,可以尝试重新运行一下安装命令:
sudo apt-get install postgresql postgresql-contrib
如果还是不行的话,可以尝试手动执行一下安装脚本:
sudo dpkg --configure -a
然后再重新运行安装命令即可。
相关文章